cp's OEIS Frontend

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.

A138460 a(n) = ((n-th prime)^6-(n-th prime)^5)/2.

This page as a plain text file.
%I A138460 #9 Dec 29 2023 10:40:10
%S A138460 16,243,6250,50421,805255,2227758,11358856,22284891,70799773,
%T A138460 287156086,429437265,1248191226,2317124020,3087177303,5274935161,
%U A138460 10873082818,20732804671,25337889030,44554128531,63148027285,74630577348
%N A138460 a(n) = ((n-th prime)^6-(n-th prime)^5)/2.
%t A138460 a = {}; Do[p = Prime[n]; AppendTo[a, (p^6 - p^5)/2], {n, 1, 24}]; a
%o A138460 (PARI) forprime(p=2,1e3,print1((p^6-p^5)/2", ")) \\ _Charles R Greathouse IV_, Jun 16 2011
%K A138460 nonn,easy
%O A138460 1,1
%A A138460 _Artur Jasinski_, Mar 22 2008