[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A219616
Numbers k such that 5^k + k^4 is prime.
0
2, 4, 6, 8, 24, 28, 36, 54, 92, 154, 234, 442, 1138, 2408, 58564
OFFSET
1,1
MATHEMATICA
Select[Range[0, 10000, 2], PrimeQ[(5^# + #^4)] &]
PROG
(Magma) /* The code gives only the terms up to 442: */ [n: n in [0..1000 by 2] | IsPrime(5^n + n^4)];
(PARI) is(n)=ispseudoprime(5^n+n^4) \\ Charles R Greathouse IV, Jul 01 2013
CROSSREFS
Sequence in context: A189153 A194393 A119260 * A067732 A334679 A222712
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, Nov 26 2012
EXTENSIONS
a(15) from Michael S. Branicky, Oct 09 2024
STATUS
approved