login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A345136
a(1) = 1; a(n) = Sum_{d|n, d < n} binomial(n,d) * a(d).
2
1, 2, 3, 16, 5, 96, 7, 1184, 261, 1360, 11, 97428, 13, 24220, 16395, 15267456, 17, 14474736, 19, 251423600, 817971, 7760236, 23, 264344406312, 265675, 135208476, 1223270127, 971632668664, 29, 2584070688810, 31, 9176980861031424, 2128920321, 39671306896, 48694835
OFFSET
1,2
MATHEMATICA
a[1] = 1; a[n_] := a[n] = Sum[If[d < n, Binomial[n, d] a[d], 0], {d, Divisors[n]}]; Table[a[n], {n, 1, 35}]
CROSSREFS
Cf. A008578 (fixed points), A056045, A074206, A330017.
Sequence in context: A176029 A218323 A369893 * A128537 A266265 A259209
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 09 2021
STATUS
approved