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.

A138412 a(n) = p^5*(p-1) where p = prime(n).

This page as a plain text file.
%I A138412 #12 May 24 2024 15:12:49
%S A138412 32,486,12500,100842,1610510,4455516,22717712,44569782,141599546,
%T A138412 574312172,858874530,2496382452,4634248040,6174354606,10549870322,
%U A138412 21746165636,41465609342,50675778060,89108257062,126296054570
%N A138412 a(n) = p^5*(p-1) where p = prime(n).
%H A138412 Vincenzo Librandi, <a href="/A138412/b138412.txt">Table of n, a(n) for n = 1..167</a>
%H A138412 <a href="/index/Pri#prime_powers">Index to sequences related to prime powers</a>
%F A138412 a(n) = A000010(prime(n)^6). - _R. J. Mathar_, Oct 15 2017
%t A138412 a = {}; Do[p = Prime[n]; AppendTo[a, p^6 - p^5], {n, 1, 50}]; a
%o A138412 (PARI) forprime(p=2,1e3,print1(p^6-p^5", ")) \\ _Charles R Greathouse IV_, Jun 16 2011
%Y A138412 Cf. A000010, A000040.
%K A138412 nonn,easy
%O A138412 1,1
%A A138412 _Artur Jasinski_, Mar 19 2008