OFFSET
1,1
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..1000
FORMULA
A prime p belongs to the sequence iff p/log(p) - q/log(q) > 1 where q is the preceding prime.
EXAMPLE
79 is in the sequence because 79/log(79) - 73/log(73) = 1.065... > 1.
PROG
(PARI) { default(realprecision, 100); n=0; s=2/log(2); forprime (p=3, 26203, if ((r=p/log(p)) - s > 1, write("b060769.txt", n++, " ", p); ); s=r; ) } \\ Harry J. Smith, Jul 11 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Ulrich Schimke (ulrschimke(AT)aol.com)
STATUS
approved