login
A022538
Nexus numbers (n+1)^22 - n^22.
3
1, 4194303, 31376865305, 17560804984807, 2366593604971209, 129237518051251511, 3778199344740720913, 69877155246255218415, 910983925888773026417, 9015229097816388767119, 71402749386839761113321, 470658689525596656480023, 2659777439042418687564025
OFFSET
0,2
REFERENCES
J. H. Conway and R. K. Guy, The Book of Numbers, Copernicus Press, NY, 1996, p. 54.
LINKS
FORMULA
a(n) = A010810(n+1) - A010810(n). - Michel Marcus, Feb 27 2018
MAPLE
b:=22: a:=n->(n+1)^b-n^b: seq(a(n), n=0..18); # Muniru A Asiru, Feb 28 2018
MATHEMATICA
Table[(n+1)^22 - n^22, {n, 0, 20}] (* G. C. Greubel, Feb 27 2018 *)
PROG
(PARI) for(n=0, 20, print1((n+1)^22 - n^22, ", ")) \\ G. C. Greubel, Feb 27 2018
(Magma) [(n+1)^22 - n^22: n in [0..20]]; // G. C. Greubel, Feb 27 2018
CROSSREFS
Column k=21 of A047969.
Cf. A010810.
Sequence in context: A363791 A251496 A011572 * A224805 A016787 A016811
KEYWORD
nonn
EXTENSIONS
Terms a(12) onward added by G. C. Greubel, Feb 27 2018
STATUS
approved