OFFSET
0,2
REFERENCES
J. H. Conway and R. K. Guy, The Book of Numbers, Copernicus Press, NY, 1996, p. 54.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..1000
FORMULA
MAPLE
b:=24: a:=n->(n+1)^b-n^b: seq(a(n), n=0..18); # Muniru A Asiru, Feb 28 2018
MATHEMATICA
Last[#]-First[#]&/@Partition[Range[0, 10]^24, 2, 1] (* Harvey P. Dale, Apr 19 2014 *)
Table[(n+1)^24 - n^24, {n, 0, 20}] (* G. C. Greubel, Feb 27 2018 *)
PROG
(PARI) for(n=0, 20, print1((n+1)^24 - n^24, ", ")) \\ G. C. Greubel, Feb 27 2018
(Magma) [(n+1)^24 - n^24: n in [0..20]]; // G. C. Greubel, Feb 27 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved