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!)
A068584 Numbers k such that the denominator of (Sum_{j=1..k} 1/j)^2 equals the denominator of Sum_{j=1..k} 1/j^2. 1
1, 2, 3, 4, 5, 9, 15, 16, 17, 28, 29, 30, 31, 32, 49, 91, 92, 93, 94, 95, 96, 97, 98, 99, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 243, 244, 245, 246, 247, 248, 249, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Numbers k such that A002805(k)^2 = A007407(k).
MATHEMATICA
s = {}; sum1 = sum2 = 0; Do[sum1 += 1/j; sum2 += 1/j^2; If[Denominator[sum1^2] == Denominator[sum2], AppendTo[s, j]], {j, 1, 1000}]; s (* Amiram Eldar, Feb 18 2021 *)
PROG
(PARI) isok(k) = denominator(sum(j=1, k, 1/j)^2) == denominator(sum(j=1, k, 1/j^2)); \\ Michel Marcus, Feb 15 2021
CROSSREFS
Sequence in context: A222436 A222437 A060732 * A107799 A329049 A003271
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Mar 27 2002
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 May 10 01:03 EDT 2024. Contains 372354 sequences. (Running on oeis4.)