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!)
A153719 Minimal exponents m such that the fractional part of (Pi-2)^m obtains a maximum (when starting with m=1). 7
1, 2, 3, 4, 5, 39, 56, 85, 557, 911, 2919, 2921, 4491, 11543, 15724, 98040, 110932, 126659 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Recursive definition: a(1)=1, a(n) = least number m>a(n-1) such that the fractional part of (Pi-2)^m is greater than the fractional part of (Pi-2)^k for all k, 1<=k<m.
The next such number must be greater than 200000.
a(19) > 300000. - Robert Price, Mar 26 2019
LINKS
FORMULA
Recursion: a(1)=1, a(k) = min{ m>1 | fract((Pi-2)^m) > fract((Pi-2)^a(k-1))}, where fract(x) = x-floor(x).
EXAMPLE
a(6)=39, since fract((Pi-2)^39)= 0.9586616565..., but fract((Pi-2)^k)<=0.9389018... for 1<=k<=38; thus fract((Pi-2)^39)>fract((Pi-2)^k) for 1<=k<39 and 39 is the minimal exponent > 5 with this property.
MATHEMATICA
$MaxExtraPrecision = 100000;
p = 0; Select[Range[1, 10000],
If[FractionalPart[(Pi - 2)^#] > p, p = FractionalPart[(Pi - 2)^#];
True] &] (* Robert Price, Mar 26 2019 *)
CROSSREFS
Sequence in context: A324276 A324277 A261247 * A024637 A037328 A369782
KEYWORD
nonn,more
AUTHOR
Hieronymus Fischer, Jan 06 2009
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 August 29 11:28 EDT 2024. Contains 375516 sequences. (Running on oeis4.)