login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A369698
AGM transform of positive cubes.
1
0, 49, 40824, 96461056, 571250390625, 7338413252698641, 181953686508203782144, 7957561391610438862503936, 572547082070592542500791107625, 64157961305703333114506988525390625, 10714350425499230222239742740718898118656, 2571996060859292513876561308464753498396819456
OFFSET
1,2
COMMENTS
See A368366 for the description of the AGM transform.
LINKS
FORMULA
a(n) = A000537(n)^n - A000312(n)*A000442(n).
MATHEMATICA
A369698[n_] := (n*(n+1)/2)^(2*n) - n^n*n!^3; Array[A369698, 15]
PROG
(Python)
from math import factorial
def A369698(n): return ((n*(n+1))**(m:=n<<1)>>m) - n**n*factorial(n)**3 # Chai Wah Wu, Jan 29 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo Xausa, Jan 29 2024
STATUS
approved