OFFSET
1,3
COMMENTS
See A368366 for the description of the AGM transform.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..68
PROG
(Python)
from itertools import count, islice
def A370223_gen(): # generator of terms
a, b, s, p = 1, 1, 0, 1
for n in count(1):
s += a
p *= a
yield s**n-n**n*p
a, b = b, a+b
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo Xausa, Feb 13 2024
STATUS
approved