A128817 Primes which are 4 greater than the product of lesser twin primes.
7, 19, 81349, 3335149, 196773559, 13970922409, 150983758430839
Offset: 1
Keywords
Examples
twinl#(2) = 3*5=15. 15+4 = 19 prime and the second term in the table.
Programs
-
PARI
twinl(n) = /* The n-th lower twin prime */ { local(c,x); c=0; x=1; while(c
Formula
Define twinl#(n)as the product of the first n lesser twin primes. Then if twinl#+4 is prime, list it.
Comments