A036097 Centered cube numbers: (n+1)^19+n^19.
1, 524289, 1162785755, 276040168411, 19348364235069, 628433226338621, 12008254925383639, 155514083261229015, 1494966905748847961, 11350851717672992089, 71159090448414546291, 380639089819037473139, 1781400289746069037525, 7438224249324360507861
Offset: 0
Examples
1^19 + (1+1)^19 = 524289 = 3 * 174763, a semiprime.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..10000
- B. K. Teo and N. J. A. Sloane, Magic numbers in polygonal and polyhedral clusters, Inorgan. Chem. 24 (1985), 4545-4558.
Programs
-
Magma
[(n+1)^19+n^19: n in [0..20]]; // Vincenzo Librandi, Aug 28 2011
-
Maple
A036097:=n->(n+1)^19+n^19: seq(A036097(n), n=0..20); # Wesley Ivan Hurt, Jul 13 2014
-
Mathematica
Total/@Partition[Range[0,20]^19,2,1] (* Harvey P. Dale, Mar 04 2013 *) f[n_] := n^19; Array[f[#] + f[# + 1] &, 14, 0] (* Robert G. Wilson v, Jul 22 2014 *)
Comments