login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A309019 Expansion of x * Product_{k>=0} (1 + x^(2^k) + x^(2^(k+1)) + x^(2^(k+2))). 5
0, 1, 1, 2, 1, 4, 2, 4, 1, 7, 4, 7, 2, 10, 4, 7, 1, 12, 7, 12, 4, 18, 7, 13, 2, 19, 10, 16, 4, 21, 7, 12, 1, 20, 12, 20, 7, 31, 12, 23, 4, 34, 18, 29, 7, 38, 13, 22, 2, 34, 19, 31, 10, 45, 16, 30, 4, 41, 21, 32, 7, 40, 12, 20, 1, 33, 20, 33, 12, 52, 20, 39, 7, 58, 31, 50, 12, 66, 23, 39, 4, 61, 34, 56, 18, 81, 29, 54, 7, 74, 38 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 0, a(1) = 1; a(2*n) = a(n), a(2*n+1) = a(n-1) + a(n) + a(n+1).
MATHEMATICA
nmax = 90; CoefficientList[Series[x Product[(1 + x^(2^k) + x^(2^(k + 1)) + x^(2^(k + 2))), {k, 0, Floor[Log[2, nmax]] + 1}], {x, 0, nmax}], x]
a[0] = 0; a[1] = 1; a[n_] := If[EvenQ[n], a[n/2], a[(n - 3)/2] + a[(n - 1)/2] + a[(n + 1)/2]]; Table[a[n], {n, 0, 90}]
CROSSREFS
Sequence in context: A274455 A153279 A278425 * A082908 A086449 A321088
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 06 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)