OFFSET
0,3
COMMENTS
(sin 0) ^ 0 is interpreted as limit of (sin(x)) ^ x as x -> 0.
LINKS
Jwalin Bhatt, Table of n, a(n) for n = 0..428
EXAMPLE
The first few values of abs((sin n)^n) are:
abs(sin(0)^0) = 1
abs(sin(1)^1) = 0.841470984807896
abs(sin(2)^2) = 0.826821810431805
abs(sin(3)^3) = 0.002810384734461
abs(sin(4)^4) = 0.328042581863883
abs(sin(5)^5) = 0.810814606094671
abs(sin(6)^6) = 0.000475886020687
abs(sin(7)^7) = 0.052831820502919
and the record low points are at n = 0, 1, 2, 3, 6, ...
MATHEMATICA
Module[{x, y, runningMin = 1.1, positions = {0}},
x = Range[10^6]; y = Abs[Sin[x]^x];
Do[If[y[[i]] < runningMin, runningMin = y[[i]]; AppendTo[positions, i]; ], {i, Length[y]}];
positions
]
PROG
(Python)
from mpmath import iv
running_min, A383229 = 2, []
for i in range(1066):
while True:
x = abs(iv.sin(i)**i)
if (comparison:=x<running_min) is None:
iv.dps += 1
else: break
if comparison:
A383229.append(i)
running_min = x
print(A383229) # Jwalin Bhatt, Jan 08 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Jwalin Bhatt, Apr 28 2025
STATUS
approved
