A153720 Numbers k such that the fractional part of (Pi-2)^k is greater than 1-(1/k).
1, 5, 8, 85, 911, 2921, 4491, 11543, 15724, 27683, 29921, 37276, 126659
Offset: 1
Examples
a(3) = 8, since fract((Pi-2)^8) = 0.8846247315... > 0.875 = 1 - (1/8), but fract((Pi-2)^k) = 0.2134..., 0.5268... <= 1 - (1/k) for 6 <= k <= 7.
Programs
-
Mathematica
Select[Range[1000], N[FractionalPart[(Pi - 2)^#], 100] > 1 - (1/#) &] (* G. C. Greubel, Aug 25 2016 *)
Comments