login
A141076
Primes of form 2*3*5*7*11 - p, where p is prime.
2
13, 17, 23, 29, 37, 41, 43, 59, 67, 71, 73, 89, 97, 103, 107, 131, 149, 157, 167, 173, 179, 181, 197, 199, 211, 223, 227, 229, 241, 257, 271, 281, 283, 293, 307, 311, 313, 317, 331, 337, 359, 379, 397, 409, 421, 431, 433, 439, 443, 449, 463, 479, 487, 499
OFFSET
1,1
COMMENTS
The final member of the sequence is a(228) = 2297. - Charles R Greathouse IV, Mar 26 2010
This sequence can also be defined as the numbers in the prime partitions of 2310 into two parts ({13, 2297}, {17, 2293}, {23, 2287}, etc.). - Alonso del Arte, Feb 14 2013
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..228 (full sequence)
FORMULA
a(n) + a(229-n) = 2*3*5*7*11.
MAPLE
l:=[]: p:=2: while p<=2310 do if(isprime(2310-p))then l:=[op(l), p]: fi: p:=nextprime(p): od: op(l); # Nathaniel Johnston, Jun 23 2011
MATHEMATICA
Select[Table[2310 - Prime[p], {p, PrimePi[2310], 1, -1}], PrimeQ] (* Alonso del Arte, Feb 14 2013 *)
CROSSREFS
Sequence in context: A235914 A050716 A217046 * A092146 A207991 A120157
KEYWORD
nonn,fini,full,easy,less
AUTHOR
STATUS
approved