This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A036097 #28 Jul 08 2025 21:34:53 %S A036097 1,524289,1162785755,276040168411,19348364235069,628433226338621, %T A036097 12008254925383639,155514083261229015,1494966905748847961, %U A036097 11350851717672992089,71159090448414546291,380639089819037473139,1781400289746069037525,7438224249324360507861 %N A036097 Centered cube numbers: (n+1)^19+n^19. %C A036097 Never prime, as a(n) = (2n + 1) * (n^18 + 9n^17 + 81n^16 + 444n^15 + 1716n^14 + 4956n^13 + 11088n^12 + 19650n^11 + 27966n^10 + 32206n^9 + 30086n^8 + 22748n^7 + 13820n^6 + 6656n^5 + 2486n^4 + 695n^3 + 137n^2 + 17n + 1). Semiprime for n in {1, 3, 8, 39, 41, 54, 111, 119, 141 ...}. [_Jonathan Vos Post_, Aug 27 2011] %C A036097 Sums of consecutive pairs of terms of A010807. - _Wesley Ivan Hurt_, Jul 13 2014 %H A036097 Vincenzo Librandi, <a href="/A036097/b036097.txt">Table of n, a(n) for n = 0..10000</a> %H A036097 B. K. Teo and N. J. A. Sloane, <a href="http://dx.doi.org/10.1021/ic00220a025">Magic numbers in polygonal and polyhedral clusters</a>, Inorgan. Chem. 24 (1985), 4545-4558. %F A036097 a(n) = A010807(n+1) + A010807(n). - _Wesley Ivan Hurt_, Jul 13 2014 %e A036097 1^19 + (1+1)^19 = 524289 = 3 * 174763, a semiprime. %p A036097 A036097:=n->(n+1)^19+n^19: seq(A036097(n), n=0..20); # _Wesley Ivan Hurt_, Jul 13 2014 %t A036097 Total/@Partition[Range[0,20]^19,2,1] (* _Harvey P. Dale_, Mar 04 2013 *) %t A036097 f[n_] := n^19; Array[f[#] + f[# + 1] &, 14, 0] (* _Robert G. Wilson v_, Jul 22 2014 *) %o A036097 (Magma) [(n+1)^19+n^19: n in [0..20]]; // _Vincenzo Librandi_, Aug 28 2011 %Y A036097 Cf. A010807, A036096, A036096. %K A036097 nonn,easy %O A036097 0,2 %A A036097 _N. J. A. Sloane_