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”).

A216890
Numbers n such that 14*3^n + 1 is prime.
1
1, 2, 3, 18, 22, 26, 27, 33, 39, 57, 62, 94, 145, 246, 390, 398, 402, 571, 690, 906, 1062, 1254, 1367, 1627, 1954, 2409, 3107, 14754, 15378, 24219, 46138, 98883, 161178
OFFSET
1,2
COMMENTS
The next terms are > 6000.
a(34) > 2*10^5. - Robert Price, Mar 16 2014
All terms are verified primes (i.e., not probable primes). - Robert Price, Mar 16 2014
MATHEMATICA
Select[Range[4000], PrimeQ[14 3^# + 1] &]
PROG
(Magma) [n: n in [0..4000] | IsPrime(14*3^n+1)];
(PARI) is(n)=ispseudoprime(14*3^n+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Sep 26 2012
EXTENSIONS
a(28)-a(33) from Robert Price, Mar 16 2014
STATUS
approved