OFFSET
0,3
EXAMPLE
The first few values of abs((cos n)^n) are:
abs(cos(0)^0) = 1
abs(cos(1)^1) = 0.540302305868139
abs(cos(2)^2) = 0.173178189568194
abs(cos(3)^3) = 0.970276937921503
abs(cos(4)^4) = 0.182542548055270
abs(cos(5)^5) = 0.001836568887601
abs(cos(6)^6) = 0.783591241730686
abs(cos(7)^7) = 0.138422055397017
abs(cos(8)^8) = 0.000000200865224
abs(cos(9)^9) = 0.432737211396127
and the record low points are at n = 0, 1, 2, 5, 8, ...
MATHEMATICA
Module[{x, y, runningMin = 1.1, positions = {}},
x = Range[0, 10^6]; y = Abs[Cos[x]^x];
Do[If[y[[i]] < runningMin, runningMin = y[[i]]; AppendTo[positions, i-1]; ], {i, Length[y]}];
positions
]
PROG
(Python)
from mpmath import iv
running_min, A383283 = 2, []
for i in range(1033):
while True:
x = abs(iv.cos(i)**i)
if (comparison:=x<running_min) is None:
iv.dps += 1
else: break
if comparison:
A383283.append(i)
running_min = x
print(A383283) # Jwalin Bhatt, Jan 05 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Jwalin Bhatt, Apr 28 2025
STATUS
approved
