login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154299 Primes of the form (1+...+m)/51 = A000217(m)/51. 2
3, 11, 101, 103
(list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p of the form k*(k+1)/(2*51): There is a finite set of solutions to 2*3*17*p=k*(k+1). - R. J. Mathar, Aug 15 2010
Original definition: "Primes of the form : 1/x+2/x+3/x+4/x+5/x+6/x+7/x+..., x=51."
The corresponding m-values are m=17, 33, 101, 102 (cf. A154296-A154304, see the latter for more comments and PARI code). It is clear that for m>102, A000217(m)/51 = m(m+1)/102 has at least 2 factors and hence cannot be prime. - M. F. Hasler, Dec 31 2012
LINKS
MATHEMATICA
lst={}; s=0; Do[s+=n/51; If[Floor[s]==s, If[PrimeQ[s], AppendTo[lst, s]]], {n, 0, 9!}]; lst
Select[Accumulate[Range[1000]/51], PrimeQ] (* Harvey P. Dale, Jun 21 2012 *)
PROG
(PARI) M=51*2; select(x->denominator(x)==1 & isprime(x), vector(M, m, m^2+m)/M) \\ M. F. Hasler, Dec 31 2012
CROSSREFS
Sequence in context: A008561 A348154 A072640 * A007616 A121045 A092245
KEYWORD
nonn,fini,full,easy
AUTHOR
EXTENSIONS
Keywords fini,full added by R. J. Mathar, Aug 15 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 19 18:51 EDT 2024. Contains 376014 sequences. (Running on oeis4.)