login
A101692
A modular binomial sum transform of 2^n.
3
1, 1, 5, 1, 5, 17, 85, 1, 5, 17, 85, 257, 1285, 4369, 21845, 1, 5, 17, 85, 257, 1285, 4369, 21845, 65537, 327685, 1114129, 5570645, 16843009, 84215045, 286331153, 1431655765, 1, 5, 17, 85, 257, 1285, 4369, 21845, 65537, 327685, 1114129, 5570645, 16843009, 84215045
OFFSET
0,3
COMMENTS
a(2^n) is 1, 5, 5, 5, 5, ...
a(2^n+1) is 5, 1, 17, 17, 17, ...
a(2*(2^n+1)) is 5, 85, 85, 85, ...
a(2^n)*a(2^n+1) is 5, 5, 85, 85, 85, ...
Also, decimal representation of the x-axis, from the origin to the right edge, of the n-th stage of growth of the two-dimensional cellular automaton defined by "Rule 4", based on the 5-celled von Neumann neighborhood. Initialized with a single black (ON) cell at stage zero. - Robert Price, Nov 03 2016
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 170.
FORMULA
a(n) = Sum_{k=0..n} (binomial(2*n+2, k) mod 2)*2^k.
a(n) = Sum_{k=0..n} A128937(n, k)*2^(n-k). - Philippe Deléham, Oct 09 2007
MATHEMATICA
a[n_]:= Sum[Mod[Binomial[2*n+2, k], 2]*2^k, {k, 0, n}]; Array[a, 43, 0] (* Stefano Spezia, Aug 04 2025 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Barry, Dec 11 2004
STATUS
approved