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!)
A023310 Primes that remain prime through 4 iterations of function f(x) = 3x + 10. 2
3, 199, 233, 709, 1361, 1367, 2137, 2879, 5519, 5987, 7283, 9719, 11699, 14983, 16417, 17881, 20939, 24481, 30467, 31663, 31741, 35107, 35863, 46811, 47869, 49261, 58207, 60497, 63317, 64781, 68777, 73453, 74021, 79901, 85487, 85571, 94327, 94999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p such that 3*p+10, 9*p+40, 27*p+130 and 81*p+400 are also primes. - Vincenzo Librandi, Aug 04 2010
LINKS
FORMULA
a(n) == 3 or 9 (mod 14). - John Cerkan, Oct 04 2016
MATHEMATICA
Select[Range[10^5], Times @@ Boole@ PrimeQ@ NestList[3 # + 10 &, #, 4] > 0 &] (* Michael De Vlieger, Oct 04 2016 *)
PROG
(Magma) [n: n in [1..1000000] | IsPrime(n) and IsPrime(3*n+10) and IsPrime(9*n+40) and IsPrime(27*n+130) and IsPrime(81*n+400)] // Vincenzo Librandi, Aug 04 2010
(PARI) is(n)=isprime(n) && isprime(3*n+10) && isprime(9*n+40) && isprime(27*n+130) && isprime(81*n+400) \\ Charles R Greathouse IV, Oct 04 2016
CROSSREFS
Subsequence of A023211, A023249, and A023280.
Sequence in context: A256406 A157565 A157598 * A054701 A356178 A342578
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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)