OFFSET
2,1
COMMENTS
-a(10) = -2022^3 - 8 was the solution to the final problem of the 2022 MIT Integral Bee Finals; see MIT link.
LINKS
Jason Bard, Table of n, a(n) for n = 2..36
MIT, 2022 Integration Bee Finals. See Problem 5.
Prime Newtons, I solved this using Upper Incomplete Gamma, YouTube video.
FORMULA
a(n) = -floor((log(Gamma(1/3, 8 * log(n) * (n^3 + n + 1)^3)) - log(3) - (1/3) * log(log(n))) / log(n)).
MATHEMATICA
Table[-Floor[(Log[Gamma[1/3, 8 (n^3 + n + 1)^3*Log[n]]] - Log[3] - (1/3) Log[Log[n]])/Log[n]], {n, 2, 36}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Bard, Jul 20 2025
STATUS
approved
