A293840 E.g.f.: exp(Sum_{n>=1} A000009(n)*x^n).
1, 1, 3, 19, 121, 1041, 10651, 121843, 1575729, 22970881, 366805171, 6365365491, 120044573353, 2430782532049, 52677233993931, 1217023986185491, 29799465317716321, 771272544315151233, 21044341084622337379, 603173026772647474771
Offset: 0
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..430
- Peter Bala, Integer sequences that become periodic on reduction modulo k for all k
Programs
-
Mathematica
nmax = 20; CoefficientList[Series[E^Sum[PartitionsQ[k]*x^k, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 18 2017 *)
Formula
a(0) = 1 and a(n) = (n-1)! * Sum_{k=1..n} k*A000009(k)*a(n-k)/(n-k)! for n > 0.
Comments