OFFSET
0,3
COMMENTS
These are the numbers that would arise if the Moessner construction on page 64 of Conway-Guy's "Book of Numbers" were extended to the fifth powers.
REFERENCES
J. H. Conway and R. K. Guy, The Book of Numbers, Copernicus Press, NY, 1996. See pp. 63-64.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,6,0,0,0,0,-15,0,0,0,0,20,0,0,0,0,-15,0,0,0,0,6,0,0,0,0,-1).
FORMULA
G.f.: x*(1 + 5*x + 10*x^2 + 10*x^3 + 5*x^4 + 26*x^5 + 50*x^6 + 20*x^7 - 20*x^8 - 20*x^9 + 66*x^10 - 60*x^12 + 30*x^14 + 26*x^15 - 50*x^16 + 20*x^17 + 20*x^18 - 20*x^19 + x^20 - 5*x^21 + 10*x^22 - 10*x^23 + 5*x^24)/((1 - x)^6*(1 + x + x^2 + x^3 + x^4)^6). - Andrew Howroyd, Nov 12 2025
MAPLE
f:=proc(n, b) local i;
for i from 0 to b-1 do
if ((n+i) mod b) = 0 then return(binomial(b, i+1)*((n+i)/b)^(i+1)); fi;
od;
end;
[seq(f(n, 5), n=0..80)];
PROG
(Python)
from sympy import binomial
def A346007(n):
i = (5-n)%5
return binomial(5, i+1)*((n+i)//5)**(i+1) # Chai Wah Wu, Jul 25 2021
(PARI) a(n) = { my(r=(-n)%5); binomial(5, r+1)*((n+r)/5)^(r+1) } \\ Andrew Howroyd, Nov 12 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 25 2021
STATUS
approved
