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