The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A342611 a(0) = 0, a(1) = 1; a(2*n) = 7*a(n), a(2*n+1) = a(n) + a(n+1). 4
0, 1, 7, 8, 49, 15, 56, 57, 343, 64, 105, 71, 392, 113, 399, 400, 2401, 407, 448, 169, 735, 176, 497, 463, 2744, 505, 791, 512, 2793, 799, 2800, 2801, 16807, 2808, 2849, 855, 3136, 617, 1183, 904, 5145, 911, 1232, 673, 3479, 960, 3241, 3207, 19208, 3249, 3535, 1296, 5537 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: x * Product_{k>=0} (1 + 7*x^(2^k) + x^(2^(k+1))).
MATHEMATICA
a[0] = 0; a[1] = 1; a[n_] := If[EvenQ[n], 7 a[n/2], a[(n - 1)/2] + a[(n + 1)/2]]; Table[a[n], {n, 0, 52}]
nmax = 52; CoefficientList[Series[x Product[(1 + 7 x^(2^k) + x^(2^(k + 1))), {k, 0, Floor[Log[2, nmax]] + 1}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A303732 A119453 A047192 * A270009 A033044 A025630
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 16 2021
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 May 15 13:23 EDT 2024. Contains 372540 sequences. (Running on oeis4.)