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

A373684
Expansion of e.g.f. exp(x / (1 - x^3)) / (1 - x^3).
1
1, 1, 1, 7, 49, 181, 1201, 16171, 122977, 971209, 16788961, 206578351, 2094314641, 40260673597, 694617709969, 9088535091091, 187060085419201, 4109646055718161, 68029103349383617, 1498126927153125079, 39199612737165358321, 799248202624341298501
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} binomial(n-2*k,k)/(n-3*k)!.
a(n) == 1 (mod 6).
PROG
(PARI) a(n) = n!*sum(k=0, n\3, binomial(n-2*k, k)/(n-3*k)!);
CROSSREFS
Cf. A293493.
Sequence in context: A163827 A206989 A221962 * A294292 A015953 A206931
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 13 2024
STATUS
approved