The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A253471 Numbers k such that 3^k + k^3 is prime. 2
2, 56, 10112, 63880, 78296, 125330, 222748, 1839730 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All terms == 2 or 4 mod 6. - Robert Israel, Jan 01 2015
LINKS
EXAMPLE
2 is in the sequence because 3^2 + 2^3 = 17 is prime.
56 is in the sequence because 3^56 + 56^3 = 523347633027360537213687137 is prime.
MAPLE
select(t -> isprime(3^t+t^3), [seq(seq(6*i+j, j=[2, 4]), i=0..100)]); # Robert Israel, Jan 01 2015
MATHEMATICA
Do[If[PrimeQ[3^n+n^3], Print[n]], {n, 0, 12000}]
PROG
(PARI) is(n)=ispseudoprime(3^n+n^3) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Cf. A001585 (3^n + n^3), A064539 (2^n + n^2 is prime), A094133 (Leyland primes).
Sequence in context: A206305 A325291 A326551 * A230879 A080318 A002542
KEYWORD
nonn,hard,more
AUTHOR
Michel Lagneau, Jan 01 2015
EXTENSIONS
a(4)-a(7) from Hans Havermann, Apr 30 2015
a(8) from Ryan Propper, Jun 27 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 22:35 EDT 2024. Contains 372533 sequences. (Running on oeis4.)