OFFSET
0,2
REFERENCES
John H. Conway and Richard K. Guy, The Book of Numbers, Copernicus Press, NY, 1996, p. 54.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Eric Weisstein's World of Mathematics, Nexus Number.
FORMULA
G.f.: ( -1 - 32752*x - 13824739*x^2 - 848090912*x^3 - 15041229521*x^4 - 102776998928*x^5 - 311387598411*x^6 - 447538817472*x^7 - 311387598411*x^8 - 102776998928*x^9 - 15041229521*x^10 - 848090912*x^11 - 13824739*x^12 - 32752*x^13 - x^14 ) / (x - 1)^15. - R. J. Mathar, Sep 02 2016
MAPLE
b:=15: a:=n->(n+1)^b-n^b: seq(a(n), n=0..18); # Muniru A Asiru, Feb 28 2018
MATHEMATICA
Table[(n + 1)^15 - n^15, {n, 0, 20}] (* Vincenzo Librandi, Nov 22 2011 *)
#[[2]]-#[[1]]&/@Partition[Range[0, 20]^15, 2, 1] (* Harvey P. Dale, Aug 07 2022 *)
PROG
(Magma) [(n+1)^15-n^15: n in [0..20]]; // Vincenzo Librandi, Nov 22 2011
(PARI) for(n=0, 20, print1((n+1)^15 - n^15, ", ")) \\ G. C. Greubel, Feb 27 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms added by G. C. Greubel, Feb 27 2018
STATUS
approved