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!)
A308154 G.f.: x * Product_{j>=1, k>=1} (1 + a(j)*x^(j*k)). 1
1, 1, 2, 5, 11, 26, 64, 159, 397, 1042, 2701, 7249, 19341, 52927, 143615, 399359, 1099846, 3087498, 8616361, 24386458, 68617936, 195678409, 554862501, 1590363317, 4539073167, 13071768304, 37496646028, 108449257539, 312439316258, 906653694239, 2622887257356 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MAPLE
A:= proc(n) option remember; series(x*`if`(n=1, 1, mul(mul(
1+a(j)*x^(j*k), k=1..(n-1)/j), j=1..n-1)), x, n+1)
end:
a:= n-> coeff(A(n), x, n):
seq(a(n), n=1..35); # Alois P. Heinz, May 14 2019
MATHEMATICA
a[n_] := a[n] = SeriesCoefficient[x Product[Product[(1 + a[j] x^(j k)), {k, 1, n - 1}], {j, 1, n - 1}], {x, 0, n}]; Table[a[n], {n, 1, 32}]
CROSSREFS
Sequence in context: A051286 A192475 A192400 * A182053 A306563 A308060
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 14 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 23 19:56 EDT 2024. Contains 371916 sequences. (Running on oeis4.)