cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A153720 Numbers k such that the fractional part of (Pi-2)^k is greater than 1-(1/k).

Original entry on oeis.org

1, 5, 8, 85, 911, 2921, 4491, 11543, 15724, 27683, 29921, 37276, 126659
Offset: 1

Views

Author

Hieronymus Fischer, Jan 06 2009

Keywords

Comments

Numbers k such that fract((Pi-2)^k) > 1-(1/k), where fract(x) = x-floor(x).
The next such number must be greater than 200000.
a(14) > 300000. - Robert Price, Mar 26 2019

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.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[1000], N[FractionalPart[(Pi - 2)^#], 100] > 1 - (1/#) &] (* G. C. Greubel, Aug 25 2016 *)