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!)
A302831 Expansion of (1/(1 - x))*Product_{k>=1} (1 + k*x^k). 3
1, 2, 4, 9, 16, 31, 56, 99, 163, 283, 469, 757, 1220, 1915, 3020, 4748, 7273, 11014, 16789, 25033, 37480, 55782, 82206, 120033, 174762, 253092, 364276, 523814, 749438, 1064853, 1509561, 2128227, 2986392, 4186093, 5832169, 8121130, 11272081, 15576076, 21446615, 29479186, 40360980 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Partial sums of A022629.
LINKS
FORMULA
G.f.: (1/(1 - x))*exp(Sum_{j>=1} Sum_{k>=1} (-1)^(j+1)*k^j*x^(j*k)/j).
MAPLE
b:= proc(n, i) option remember; `if`(i*(i+1)/2<n, 0,
`if`(n=0, 1, b(n, i-1)+`if`(i>n, 0, i*b(n-i, i-1))))
end:
a:= proc(n) option remember; `if`(n<0, 0, a(n-1)+b(n$2)) end:
seq(a(n), n=0..40); # Alois P. Heinz, Apr 13 2018
MATHEMATICA
nmax = 40; CoefficientList[Series[1/(1 - x) Product[(1 + k x^k), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 40; CoefficientList[Series[1/(1 - x) Exp[Sum[Sum[(-1)^(j + 1) k^j x^(j k)/j, {k, 1, nmax}], {j, 1, nmax}]], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A034452 A034449 A082894 * A091437 A131337 A062791
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 13 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 May 17 17:07 EDT 2024. Contains 372603 sequences. (Running on oeis4.)