A022532 Nexus numbers (n+1)^16-n^16.
1, 65535, 42981185, 4251920575, 148292923329, 2668522016831, 30411820662145, 248242046141055, 1571545212141185, 8146979811148159, 35949729863572161, 138934529031464255, 480532350288143425, 1512536728626191295, 4390455017903519489, 11878335717996660991
Offset: 0
References
- J. H. Conway and R. K. Guy, The Book of Numbers, Copernicus Press, NY, 1996, p. 54.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Programs
-
Magma
[(n+1)^16-n^16: n in [0..20]]; // Vincenzo Librandi, Nov 22 2011
-
Maple
b:=16: a:=n->(n+1)^b-n^b: seq(a(n),n=0..18); # Muniru A Asiru, Feb 28 2018
-
Mathematica
Table[(n+1)^16-n^16,{n,0,20}] (* Vincenzo Librandi, Nov 22 2011 *)
-
PARI
for(n=0,20, print1((n+1)^16 - n^16, ", ")) \\ G. C. Greubel, Feb 27 2018
Formula
Extensions
More terms added by G. C. Greubel, Feb 27 2018