OFFSET
1,2
COMMENTS
See A373556 (where elements in each set are listed in decreasing order) for more information.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10003 (rows 1..1892 of the triangle, flattend).
Alistair Bird, Jozef Schreier, Schreier sets and the Fibonacci sequence, Out Of The Norm blog, May 13 2012.
Hùng Việt Chu, The Fibonacci Sequence and Schreier-Zeckendorf Sets, Journal of Integer Sequences, Vol. 22 (2019), Article 19.6.5.
EXAMPLE
Triangle begins:
Corresponding
(this sequence)
---------------------------------------------------------------
1 {1}
2 6 110 {2, 3}
3 10 1010 {2, 4}
4 18 10010 {2, 5}
5 28 11100 {3, 4, 4}
6 34 100010 {2, 6}
7 44 101100 {3, 4, 6}
8 52 110100 {3, 5, 6}
9 66 1000010 {2, 7}
10 76 1001100 {3, 4, 7}
11 84 1010100 {3, 5, 7}
12 100 1100100 {3, 6, 7}
13 120 1111000 {4, 5, 6, 7}
...
MATHEMATICA
Join[{{1}}, Map[PositionIndex[Reverse[IntegerDigits[#, 2]]][1] &, Select[Range[2, 500, 2], DigitCount[#, 2, 1] == IntegerExponent[#, 2] + 1 &]]]
CROSSREFS
KEYWORD
nonn,tabf,base,easy
AUTHOR
Paolo Xausa, Jun 10 2024
STATUS
approved