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!)
A023278 Primes that remain prime through 3 iterations of function f(x) = 3x + 4. 3
23, 683, 1663, 2753, 3203, 6073, 6323, 7523, 8243, 9293, 9613, 15173, 19913, 21023, 21683, 25183, 26633, 29663, 34613, 34703, 39293, 41953, 43283, 45533, 52813, 59393, 62473, 65053, 66763, 71713, 71993, 81533, 81953, 84523, 87833, 103843, 104183 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p such that 3*p+4, 9*p+16 and 27*p+52 are also primes. - Vincenzo Librandi, Aug 04 2010
LINKS
FORMULA
a(n) == 3 (mod 10). - John Cerkan, Sep 16 2016
MATHEMATICA
Select[Prime@ Range[10^4], Times @@ Boole@ PrimeQ@ Rest@ NestList[3 # + 4 &, #, 3] > 0 &] (* Michael De Vlieger, Sep 19 2016 *)
PROG
(Magma) [n: n in [1..150000] | IsPrime(n) and IsPrime(3*n+4) and IsPrime(9*n+16) and IsPrime(27*n+52)] // Vincenzo Librandi, Aug 04 2010
(PARI) is(n)=isprime(n) && isprime(3*n+4) && isprime(9*n+16) && isprime(27*n+52) \\ Charles R Greathouse IV, Sep 20 2016
CROSSREFS
Subsequence of A023209, A023247, and of A034936.
Sequence in context: A169596 A142553 A123782 * A013362 A013365 A127230
KEYWORD
nonn
AUTHOR
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 April 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)