OFFSET
0,2
COMMENTS
Every nonnegative integer appears.
LINKS
EXAMPLE
The irregular table begins
{1, 2, 4},
{0, 3, 5, 7, 10},
{8, 16},
{6, 11, 13, 14},
{9, 17, 23},
{20},
{12, 15},
{22, 27, 29},
{18, 19, 21, 26, 28},
{33},
{24, 31, 46},
{25, 34, 37, 40, 41}
MATHEMATICA
nn = 100; f = Fibonacci[Range[0, nn]]; t2 = Transpose[{Range[0, nn], f}]; Table[Select[Range[nn + 1], Count[IntegerDigits[t2[[#, 2]], 2], 0] == n &] - 1, {n, 0, nn/5}]
Insert[Flatten[Module[{nn=100, dc}, dc=DigitCount[Fibonacci[Range[nn]], 2, 0]; Table[Position[dc, n], {n, 0, 30}]]], 0, 4] (* Harvey P. Dale, Mar 17 2024 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
T. D. Noe, Mar 11 2013
STATUS
approved