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!)
A303664 Expansion of (1/(1 - x))*Sum_{k>=0} k!*x^(k*(k+1)/2)/Product_{j=1..k} (1 - x^j). 1
1, 2, 3, 6, 9, 14, 25, 38, 57, 84, 141, 206, 307, 440, 633, 984, 1419, 2036, 2887, 4064, 5619, 8370, 11667, 16424, 22717, 31478, 42783, 58386, 82701, 113162, 155029, 210770, 285645, 383688, 514497, 682922, 940327, 1256300, 1687365, 2245692, 2997183, 3955448, 5233315, 6854588, 8978175, 11998806 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Partial sums of A032020.
LINKS
MAPLE
T:= proc(n, k) option remember; `if`(k<0 or n<0, 0,
`if`(k=0, `if`(n=0, 1, 0), T(n-k, k) +k*T(n-k, k-1)))
end:
b:= n-> add(T(n, k), k=0..floor((sqrt(8*n+1)-1)/2)):
a:= proc(n) option remember;
`if`(n<0, 0, b(n)+a(n-1))
end:
seq(a(n), n=0..50); # Alois P. Heinz, Apr 28 2018
MATHEMATICA
nmax = 45; CoefficientList[Series[1/(1 - x) Sum[k! x^(k (k + 1)/2)/Product[1 - x^j, {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A146937 A032231 A200273 * A190276 A113808 A337114
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 April 23 19:56 EDT 2024. Contains 371916 sequences. (Running on oeis4.)