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!)
A303666 Expansion of 1/((1 - x)*(1 - Sum_{k>=0} x^(2^k))). 3
1, 2, 4, 7, 13, 23, 41, 72, 128, 226, 400, 706, 1248, 2204, 3894, 6877, 12149, 21459, 37907, 66957, 118275, 208919, 369037, 651863, 1151453, 2033921, 3592719, 6346167, 11209863, 19801075, 34976589, 61782572, 109132628, 192771658, 340511506, 601478868, 1062451154, 1876711698, 3315020026 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Partial sums of A023359.
LINKS
MAPLE
a:= proc(n) option remember; 1+
`if`(n>0, add(a(n-2^i), i=0..ilog2(n)), 0)
end:
seq(a(n), n=0..50); # Alois P. Heinz, Apr 28 2018
MATHEMATICA
nmax = 38; CoefficientList[Series[1/((1 - x) (1 - Sum[x^2^k, {k, 0, nmax}])), {x, 0, nmax}], x]
a[0] = 1; a[n_] := a[n] = Sum[Boole[k == 2^IntegerExponent[k, 2]] a[n - k], {k, 1, n}]; Accumulate[Table[a[n], {n, 0, 38}]]
CROSSREFS
Sequence in context: A208354 A003116 A368299 * A260917 A165648 A287381
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 28 2018
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 March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)