OFFSET
1,1
COMMENTS
Related to partial sums of the harmonic series and to Wolstenholme's Theorem.
Some of the larger entries may only correspond to probable primes.
LINKS
Eric Weisstein, Table of n, a(n) for n = 1..97
J. Sondow and E. W. Weisstein, MathWorld: Harmonic Number
Eric Weisstein's World of Mathematics, Integer Sequence Primes
EXAMPLE
5 is in this sequence because 1+1/2+1/3+1/4+1/5 = 137/60 and 137 is prime.
MATHEMATICA
Select[Range[1000], PrimeQ[Numerator[HarmonicNumber[ # ]]] &]
PROG
(Perl) use ntheory ":all"; for (1..1000) { say if is_prime((harmfrac($_))[0]); } # Dana Jacobsen, Feb 05 2016
(PARI) isok(n) = isprime(numerator(sum(k=1, n, 1/k))); \\ Michel Marcus, Feb 05 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
James R. Buddenhagen, Feb 23 2001
EXTENSIONS
Terms from 201 to 492 computed by Jud McCranie.
More terms from Kamil Duszenko (kdusz(AT)wp.pl), Jun 22 2003
29 more terms from T. D. Noe, Sep 15 2004
Further terms found by Eric W. Weisstein, Mar 07 2005, Mar 29 2005, Nov 28 2005, Sep 23 2006
STATUS
approved