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!)
A308245 G.f.: x * Product_{k>=1} 1/(1 - a(k)*(-x)^k)^((-1)^k). 1
1, 1, 1, 2, 4, 8, 16, 34, 76, 168, 368, 838, 1964, 4544, 10464, 24658, 58984, 140072, 331456, 795834, 1932228, 4665304, 11227280, 27305882, 66953236, 163418448, 397826496, 976658846, 2412163316, 5935476672, 14576596320, 36023097266, 89458468968 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
Recurrence: a(n+1) = (1/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k+d)*d*a(d)^(k/d) ) * a(n-k+1).
MATHEMATICA
a[n_] := a[n] = SeriesCoefficient[x Product[1/(1 - a[k] (-x)^k)^((-1)^k), {k, 1, n - 1}], {x, 0, n}]; Table[a[n], {n, 1, 33}]
a[n_] := a[n] = Sum[Sum[(-1)^(k + d) d a[d]^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n - 1}]/(n - 1); a[1] = 1; Table[a[n], {n, 1, 33}]
CROSSREFS
Sequence in context: A333647 A045648 A248890 * A209971 A308031 A166354
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 16 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 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)