OFFSET
0,3
COMMENTS
The sequence has consecutive differences of 3, 3, 1, 348 after the 2nd term for as long as the sequence exists. The differences add up to 355 which is the numerator of a significant convergent to Pi.
It appears that the sequence has only 466 terms with the last term being 51831.
Sum_{k=0..51831} sin(2k+1)^(2k+1) = 60.2254500...
LINKS
Jwalin Bhatt, Table of n, a(n) for n = 0..465
EXAMPLE
-----------------------------------------
| k | Sum_{n=0..k} sin(2k+1)^(2k+1) |
-----------------------------------------
| 0 | 0.8414... |
| 1 | 0.8442... |
| 2 | 0.0334... |
| 10998 | 0.0101... |
| 10999 | 0.9407... |
-----------------------------------------
PROG
(Python)
from mpmath import iv
def a_upto(limit):
sum_, highs = iv.mpf('0'), [0]
for i in range(1, 1+limit):
t = 2*i + 1
sum_ += iv.sin(t)**t
if sum_ > 0:
highs.append(i)
sum_ = 0
return highs
print(a_upto(14200)) # Jwalin Bhatt, Nov 09 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Jwalin Bhatt, Sep 06 2025
STATUS
approved
