cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A051852 A051851(n)/row_index_of(n).

Original entry on oeis.org

1, 1, 2, 1, 2, 7, 1, 2, 3, 8, 39, 1, 2, 3, 9, 10, 52, 311, 1, 2, 3, 4, 10, 11, 19, 67, 68, 467, 3268, 1, 2, 3, 4, 11, 12, 13, 21, 84, 85, 94, 669, 670, 5350, 42799, 1, 2, 3, 4, 5, 12, 13, 14, 23, 24, 103, 104, 105, 114, 205, 923, 924, 934, 8304, 8305, 74734, 672605, 1, 2, 3
Offset: 1

Views

Author

Antti Karttunen, Dec 13 1999

Keywords

Examples

			1; 1, 2; 1, 2, 7; 1, 2, 3, 8, 39; 1, 2, 3, 9, 10, 52, 311;
		

Crossrefs

A subset of A051850 (but note the relative indexing...)

Programs

  • Maple
    with(combinat); rows_upto_u := proc(u) local a,n; a := []; for n from 1 to u do a := [op(a),op(map(divby, sort(map(list_in_base_b,partition(n),(n+1))), n))]; od; RETURN(a); end;