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”).

A294216
E.g.f.: exp(1/((1-x)*(1-x^2)*(1-x^3)*(1-x^4)*(1-x^5)) - 1).
3
1, 1, 5, 31, 265, 2621, 30901, 411475, 6232241, 103992985, 1909517221, 38038551431, 819452533945, 18924054045781, 466804248205205, 12234394315501051, 339537099805667041, 9941204417393228465, 306212116909615474501, 9894769026271957204975
OFFSET
0,3
LINKS
Vaclav Kotesovec, Recurrence (of order 25)
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Exp[1/Times@@(1-x^Range[5])-1], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Sep 08 2018 *)
PROG
(PARI) N=66; x='x+O('x^N); Vec(serlaplace(exp(1/((1-x)*(1-x^2)*(1-x^3)*(1-x^4)*(1-x^5))-1)))
CROSSREFS
Column k=5 of A294212.
Sequence in context: A125598 A267436 A294215 * A058892 A177453 A346405
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 25 2017
STATUS
approved