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.

A138425 a(n) = (prime(n)^5 - prime(n))/3.

This page as a plain text file.
%I A138425 #13 Sep 08 2022 08:45:33
%S A138425 10,80,1040,5600,53680,123760,473280,825360,2145440,6837040,9543040,
%T A138425 23114640,38618720,49002800,76448320,139398480,238308080,281532080,
%U A138425 450041680,601409760,691023840,1025685440,1313013520,1861353120
%N A138425 a(n) = (prime(n)^5 - prime(n))/3.
%H A138425 Vincenzo Librandi, <a href="/A138425/b138425.txt">Table of n, a(n) for n = 1..200</a>
%F A138425 a(n) = A138404(n)/3. - _R. J. Mathar_, Oct 15 2017
%t A138425 a = {}; Do[p = Prime[n]; AppendTo[a, (p^5 - p)/3], {n, 1, 50}]; a
%o A138425 (Magma) [(NthPrime((n))^5 - NthPrime((n)))/3: n in [1..30] ]; // _Vincenzo Librandi_, Jun 18 2011
%o A138425 (PARI) forprime(p=2,1e3,print1((p^5-p)/3", ")) \\ _Charles R Greathouse IV_, Jul 15 2011
%K A138425 nonn,easy
%O A138425 1,1
%A A138425 _Artur Jasinski_, Mar 19 2008