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

A373510
Expansion of 1/(1 - x/(1 - 25*x^5)^(1/5)).
3
1, 1, 1, 1, 1, 1, 6, 11, 16, 21, 26, 106, 211, 341, 496, 676, 2256, 4611, 7866, 12146, 17576, 51781, 106761, 188266, 302671, 456976, 1236306, 2552661, 4602416, 7620071, 11881376, 30218956, 62278561, 114056566, 193134346, 308915776, 749942856, 1540351961
OFFSET
0,7
FORMULA
a(5*n) = 26^(n-1) for n > 0.
a(n) = Sum_{k=0..floor(n/5)} 25^k * binomial(n/5-1,k).
a(n) == 1 (mod 5).
PROG
(PARI) a(n) = sum(k=0, n\5, 25^k*binomial(n/5-1, k));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 07 2024
STATUS
approved