login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A101693
A modular binomial sum transform of 2^n.
1
1, 1, 5, 1, 21, 1, 5, 17, 341, 1, 5, 17, 85, 257, 1285, 4369, 87381, 1, 5, 17, 85, 257, 1285, 4369, 21845, 65537, 327685, 1114129, 5570645, 16843009, 84215045, 286331153, 5726623061, 1, 5, 17, 85, 257, 1285, 4369, 21845, 65537, 327685, 1114129, 5570645
OFFSET
0,3
COMMENTS
a(2^n)=A101694(n); b(2^n+1) is 5,1,1,1,....
FORMULA
a(n)=sum{k=0..n, mod(binomial(2n-2, k), 2)2^k}
MATHEMATICA
Table[Sum[Mod[Binomial[2n-2, k], 2]2^k, {k, 0, n}], {n, 0, 50}] (* Harvey P. Dale, Nov 23 2019 *)
CROSSREFS
Cf. A001045.
Sequence in context: A070729 A348501 A296306 * A063476 A126325 A278544
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Dec 11 2004
STATUS
approved