A125581 Numbers n such that n does not divide the denominator of the n-th harmonic number nor the denominator of the n-th alternating harmonic number.
77, 847, 9317, 102487, 596778, 1127357, 1193556, 6161805, 12323610, 12400927
Offset: 1
Links
- Tanya Khovanova, Non Recursions.
- Eric Weisstein's World of Mathematics, Harmonic Number.
Programs
-
Mathematica
f=0; g=0; Do[g=g+1/n; f=f+(-1)^(n+1)/n; If[ !IntegerQ[Denominator[g]/n]&&!IntegerQ[Denominator[f]/n], Print[n]], {n, 1, 10000}]
Extensions
More terms from Max Alekseyev, Mar 11 2007
a(8)-a(10) from Max Alekseyev, Mar 19 2007
Comments