cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A369698 AGM transform of positive cubes.

Original entry on oeis.org

0, 49, 40824, 96461056, 571250390625, 7338413252698641, 181953686508203782144, 7957561391610438862503936, 572547082070592542500791107625, 64157961305703333114506988525390625, 10714350425499230222239742740718898118656, 2571996060859292513876561308464753498396819456
Offset: 1

Views

Author

Paolo Xausa, Jan 29 2024

Keywords

Comments

See A368366 for the description of the AGM transform.

Crossrefs

Programs

  • Mathematica
    A369698[n_] := (n*(n+1)/2)^(2*n) - n^n*n!^3; Array[A369698, 15]
  • 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

Formula

a(n) = A000537(n)^n - A000312(n)*A000442(n).