OFFSET
1,1
COMMENTS
Primes p (for p>=11) such that sigma(p-2) > p. - Benoit Cloitre, Feb 08 2002
Prime numbers that are not the sum of two smaller prime numbers. - Tomas Xordan, May 10 2007
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
FORMULA
a(n) ~ n log n. - Charles R Greathouse IV, Jan 10 2013
MATHEMATICA
Select[ Prime /@ Range[100], ! PrimeQ[# - 2] &] (* Jean-François Alcover, Apr 19 2013 *)
PROG
(Magma) [p: p in PrimesUpTo(420) | not IsPrime(p-2)]; // Vincenzo Librandi, Jul 26 2013
(PARI) lista(nn) = forprime(p=2, nn, if (!isprime(p-2), print1(p, ", ")); ); \\ Michel Marcus, Dec 05 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Better description from Vladeta Jovovic, Dec 14 2002
STATUS
approved