OFFSET
1,2
COMMENTS
The length of row n is A217287(n).
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10441 (rows 1 <= n <= 1024, flattened)
Michael De Vlieger, Plot (n, m) where m is a term in row n of this sequence, for rows 1 <= n <= 1024.
EXAMPLE
These are the first chains of the triangle:
1, 2, 3;
2, 3;
3, 4, 5;
4, 5, 6, 7;
5, 6, 7;
6, 7;
7, 8, 9, 10, 11;
8, 9, 10, 11;
9, 10, 11;
10, 11, 12, 13, 14;
...
MATHEMATICA
Block[{nn = 24, r}, r = Array[If[# == 1, 0, Total[2^(PrimePi /@ FactorInteger[#][[All, 1]] - 1)]] &, nn + Ceiling@ Sqrt@ nn]; Array[Block[{k = # + 1, s = r[[#]]}, While[UnsameQ[s, Set[s, BitOr[s, r[[k]] ] ] ], k++]; Range[#, k - 1]] &, nn] ] // Flatten (* Michael De Vlieger, May 02 2020 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Lior Manor, Oct 03 2012
EXTENSIONS
Row 1 prepended to match A217287 and edited by Michael De Vlieger, May 02 2020.
STATUS
approved