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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A125745 Numbers k such that the numerator of Sum_{j=1..k} k^2/(2*j*(j+k)) is prime. 0
2, 3, 4, 5, 6, 7, 12, 35, 43, 73, 77, 93, 98, 151, 166, 224, 255, 372, 596, 602, 813, 934, 1139, 1373, 1397, 1411, 1530, 1892, 1954, 2236, 2275, 2930, 3209, 3257, 3420, 4493, 5002, 5553, 6173, 6599, 7615, 8601, 8785, 10895, 10923, 11161, 12118, 14451, 15741 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Posted in response to a question from Dirk Boland.
LINKS
EXAMPLE
a(7) = 12 is a term because Sum_{j=1..k} k^2/(2*j*(j+k)) = 13013256143/892371480, for k=12, 13013256143 is prime and this is the 7th such sum with a prime numerator.
MATHEMATICA
q[n_] := PrimeQ[Numerator[Sum[n^2/(2*j*(j + n)), {j, 1, n}]]]; Select[Range[1000], q] (* Amiram Eldar, Feb 19 2022 *)
PROG
(PARI) {ls=[]; for(k=1, 250, if(ispseudoprime(numerator(sum(j=1, k, k^2/(2*j*(j+k))))), ls=concat(ls, k))); print(ls)}
CROSSREFS
Sequence in context: A033079 A173819 A165305 * A265124 A032990 A060810
KEYWORD
nonn
AUTHOR
David Broadhurst, Dec 05 2006
EXTENSIONS
a(30)-a(49) from Amiram Eldar, Feb 19 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 16 14:05 EDT 2024. Contains 371740 sequences. (Running on oeis4.)