OFFSET
0,1
COMMENTS
Previous name was: Consider the 2^n compositions of n per row and mark only those ending in an odd part.
EXAMPLE
A065120 begins 0, 1, 2, 1, 3, 2, 1, 1, 4, 3, 2, 2, 1, 1, 1, 1, ...
Therefore this sequence begins 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, ...
PROG
(PARI) lista(nn) = {my(v = vector(nn)); v[1] = 1; for (i=2, nn, v[i] = mg(i-1)*v[(i+1)\2]; ); for (i=1, nn, print1(valuation(v[i], 2) % 2, ", "); ); } \\ Michel Marcus, Feb 09 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Alford Arnold, Oct 04 2006
EXTENSIONS
More terms from Nathaniel Johnston, Apr 30 2011
New name using given formula, Joerg Arndt, Jan 24 2024
STATUS
approved