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!)
A307816 a(1) = 1; a(n) = Sum_{k=1..n-1} a(n-k) * Sum_{d|k} a(d)*a(k/d). 0
1, 1, 3, 11, 46, 201, 928, 4399, 21431, 106399, 536896, 2744532, 14185314, 73999955, 389131156, 2060478226, 10976863244, 58792036053, 316397505099, 1710037259744, 9277953713444, 50514377326158, 275903656802218, 1511334791637679, 8300811367229306, 45703063861360901 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f.: A(x) = Sum_{n>=1} a(n)*x^n = x + (Sum_{n>=1} a(n)*x^n) * (Sum_{i>=1} Sum_{j>=1} a(i)*a(j)*x^(i*j)).
MATHEMATICA
a[n_] := a[n] = Sum[a[n - k] Sum[a[d] a[k/d], {d, Divisors[k]}], {k, 1, n - 1}]; a[1] = 1; Table[a[n], {n, 1, 26}]
a[n_] := a[n] = SeriesCoefficient[x + Sum[a[k] x^k, {k, 1, n - 1}] Sum[Sum[a[i] a[j] x^(i j), {j, 1, n - 1}], {i, 1, n - 1}], {x, 0, n}]; Table[a[n], {n, 1, 26}]
PROG
(PARI) lista(nn) = { my(va=vector(nn)); va[1] = 1; for (n=2, nn, va[n] = sum(k=1, n-1, va[n-k] * sumdiv(k, d, va[d]*va[k/d]))); va; } \\ Michel Marcus, Apr 30 2019
CROSSREFS
Sequence in context: A027135 A151134 A151135 * A151136 A151137 A151138
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 30 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 19 10:31 EDT 2024. Contains 371791 sequences. (Running on oeis4.)