A160019 Triangle: Lodumo_2 applied to each row of Pascal's triangle .
1, 1, 3, 1, 0, 3, 1, 3, 5, 7, 1, 0, 2, 4, 3, 1, 3, 0, 2, 5, 7, 1, 0, 3, 2, 5, 4, 7, 1, 3, 5, 7, 9, 11, 13, 15, 1, 0, 2, 4, 6, 8, 10, 12, 3, 1, 3, 0, 2, 4, 6, 8, 10, 5, 7, 1, 0, 3, 2, 4, 6, 8, 10, 5, 12, 7, 1, 3, 5, 7, 0, 2, 4, 6, 9, 11, 13, 15, 1, 0, 2, 4, 3, 6, 8, 10, 5, 12, 14, 16, 7
Offset: 0
Examples
Triangle begins: 1; 1, 3; 1, 0, 3; 1, 3, 5, 7; 1, 0, 2, 4, 3; 1, 3, 0, 2, 5, 7; ...
Links
- Andrew Howroyd, Table of n, a(n) for n = 0..1325
- OEIS wiki, Lodumo transform
Programs
-
PARI
\\ here S(n,k) is A047999. S(n,k)={bitand(n-k, k)==0} row(n)={my(v=vector(n+1), b=0); for(k=0, n, if(S(n,k), b++; v[1+k]=2*b-1, v[1+k]=2*(k-b))); v} { for(n=0, 10, print(row(n))) } \\ Andrew Howroyd, Feb 02 2020