[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A154302
Primes of the form (1+2+...+m)/87 = A000217(m)/87.
3
5, 19, 43, 173
OFFSET
1,1
COMMENTS
Original definition: "Primes of the form : 1/x+2/x+3/x+4/x+5/x+6/x+7/x+..., x=87."
The corresponding m-values are m=29,57,86,173. It is clear that for m>2*87, T(m)/87 = m(m+1)/174 cannot be a prime, since then each factor in the numerator is larger than the denominator. See A154304 for further comments and PARI code. - M. F. Hasler, Jan 06 2013
MATHEMATICA
lst={}; s=0; Do[s+=n/87; If[Floor[s]==s, If[PrimeQ[s], AppendTo[lst, s]]], {n, 0, 4*9!}]; lst
PROG
(PARI) d=87*2; for(m=1, 999, (m^2+m)%d==0&isprime((m^2+m)/d)&print1(m", ")) \\ print the m-values(!) - use A154304(87) to get A154302 as a vector. \\ - M. F. Hasler, Jan 06 2013
CROSSREFS
KEYWORD
nonn,fini,full,easy,bref
AUTHOR
EXTENSIONS
Edited by M. F. Hasler, Jan 06 2013
STATUS
approved