OFFSET
1,2
COMMENTS
Each row beginning with an odd number (rows with even index) is followed by a row of the same length, with the same terms, but multiplied by 2. See also comments in the Formula section of A018819.
Note that although the indexing of rows start from zero, the indexing of this sequence starts from 1, with a(1) = 1.
Also Heinz numbers of integer partitions whose binary rank is n, where the binary rank of a partition y is given by Sum_i 2^(y_i-1). For example, row n = 6 is 15, 20, 27, 36, 48, 64, corresponding to the partitions (3,2), (3,1,1), (2,2,2), (2,2,1,1), (2,1,1,1,1), (1,1,1,1,1,1). - Gus Wiseman, May 25 2024
LINKS
FORMULA
EXAMPLE
The irregular table begins as:
row terms
0 1;
1 2;
2 3, 4;
3 6, 8;
4 5, 9, 12, 16;
5 10, 18, 24, 32;
6 15, 20, 27, 36, 48, 64;
7 30, 40, 54, 72, 96, 128;
8 7, 25, 45, 60, 80, 81, 108, 144, 192, 256;
9 14, 50, 90, 120, 160, 162, 216, 288, 384, 512;
10 21, 28, 75, 100, 135, 180, 240, 243, 320, 324, 432, 576, 768, 1024;
11 42, 56, 150, 200, 270, 360, 480, 486, 640, 648, 864, 1152, 1536, 2048;
...
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Table[Select[Range[0, 2^k], Total[2^(prix[#]-1)]==k&], {k, 0, 10}] (* Gus Wiseman, May 25 2024 *)
PROG
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Antti Karttunen, Nov 14 2016
STATUS
approved