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 A138458 #9 Dec 29 2023 10:39:34 %S A138458 2,27,625,4802,73205,199927,1002252,1954815,6156502,24754835,36940840, %T A138458 106827177,197803270,263247677,448930652,923186277,1757017345, %U A138458 2146105355,3768259627,5336453010,6304409502,10127021060,13620538127 %N A138458 a(n) = ((n-th prime)^6-(n-th prime)^4)/24. %t A138458 a = {}; Do[p = Prime[n]; AppendTo[a, (p^6 - p^4)/24], {n, 1, 24}]; a %t A138458 (#^6-#^4)/24&/@Prime[Range[30]] (* _Harvey P. Dale_, Apr 27 2018 *) %o A138458 (PARI) forprime(p=2,1e3,print1((p^6-p^4)/24", ")) \\ _Charles R Greathouse IV_, Jul 15 2011 %K A138458 nonn,easy %O A138458 1,1 %A A138458 _Artur Jasinski_, Mar 22 2008