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.

A081508 Primes of form 1 + 3^k + 5^k.

This page as a plain text file.
%I A081508 #9 Aug 11 2024 04:58:26
%S A081508 3,244672067,14551915378461487103639747,
%T A081508 3552713678880267372432493847753987,
%U A081508 211758236813575107295480170109084902352995775163267
%N A081508 Primes of form 1 + 3^k + 5^k.
%H A081508 Amiram Eldar, <a href="/A081508/b081508.txt">Table of n, a(n) for n = 1..6</a>
%F A081508 a(n) = A074507(A076515(n)). - _Amiram Eldar_, Aug 11 2024
%t A081508 Do[s=1^w+3^w+5^w; If[IntegerQ[w/100], Print[{w}]]; If[PrimeQ[s], Print[{w, s}]], {w, 0, 1000}]
%o A081508 (PARI) lista(kmax) = {my(p); for(k = 0, kmax, p = 1 + 3^k + 5^k; if(isprime(p), print1(p, ", ")));} \\ _Amiram Eldar_, Aug 11 2024
%Y A081508 Cf. A074507, A076515, A277122.
%K A081508 nonn
%O A081508 1,1
%A A081508 _Labos Elemer_, Apr 15 2003