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 A022540 #26 Sep 08 2022 08:44:46 %S A022540 1,16777215,282412759265,281192547174175,59323169798679969, %T A022540 4678776693546226271,186842850042244797505,4530785251489078799295, %U A022540 75044076594002864649665,920233556923127490136639,8849732675807611094711841,69647114527583233038729695,463303923170979668638153825 %N A022540 Nexus numbers (n+1)^24 - n^24. %D A022540 J. H. Conway and R. K. Guy, The Book of Numbers, Copernicus Press, NY, 1996, p. 54. %H A022540 Harvey P. Dale, <a href="/A022540/b022540.txt">Table of n, a(n) for n = 0..1000</a> %F A022540 a(n) = A010812(n+1) - A010812(n). - _Michel Marcus_, Feb 27 2018 %p A022540 b:=24: a:=n->(n+1)^b-n^b: seq(a(n),n=0..18); # _Muniru A Asiru_, Feb 28 2018 %t A022540 Last[#]-First[#]&/@Partition[Range[0,10]^24,2,1] (* _Harvey P. Dale_, Apr 19 2014 *) %t A022540 Table[(n+1)^24 - n^24, {n,0,20}] (* _G. C. Greubel_, Feb 27 2018 *) %o A022540 (PARI) for(n=0,20, print1((n+1)^24 - n^24, ", ")) \\ _G. C. Greubel_, Feb 27 2018 %o A022540 (Magma) [(n+1)^24 - n^24: n in [0..20]]; // _G. C. Greubel_, Feb 27 2018 %Y A022540 Column k=23 of A047969. %Y A022540 Cf. A010812 (n^24). %K A022540 nonn %O A022540 0,2 %A A022540 _N. J. A. Sloane_