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 A048636 #30 Jan 14 2025 09:51:34 %S A048636 29,127,24391,357913,571789,1442899,5177719,18191449,30080233, %T A048636 73560061,80062993,118370773,127263529,131872231,318611989,344472103, %U A048636 440711083,461889919,590589721,756058033,865523179,1095912793,1298596573,1341919729,1524845953,1697936059 %N A048636 Primes of the form prime^3 + 2. %C A048636 The first terms in the intersection with A092402, i.e., of the form p + 2^3, are (18191449, 1341919729, 2588282119, 3532642669, 16445197009, ...). - _M. F. Hasler_, Jan 13 2025 %H A048636 Amiram Eldar, <a href="/A048636/b048636.txt">Table of n, a(n) for n = 1..10000</a> (terms 1..1000 from Vincenzo Librandi) %e A048636 a(2) = 127 = 5^3 + 2 and 5 is prime. %p A048636 select(isprime, [ithprime(i)^3+2$i=1..300])[]; # _Alois P. Heinz_, Jan 13 2025 %t A048636 lst={};Do[s=Prime[n]^3;If[PrimeQ[p=s+2], AppendTo[lst, p]], {n, 6!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Sep 26 2008 *) %o A048636 (PARI) forprime (p=2,1100,if(isprime(p^3+2),print1(p^3+2,", "))) \\ _Hugo Pfoertner_, Oct 30 2018 %Y A048636 Cf. A048637. %Y A048636 Cf. A092402 (primes of the form p + 8), A321891 (union of the two); A188764 (primes of the form (product of distinct primes^3) + 2). %K A048636 easy,nonn %O A048636 1,1 %A A048636 _Enoch Haga_