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.

A381198 a(n) = denominator( [(x*y*z*u)^n] 1/sqrt(1 - (x + y + z + u*(x*y + x*z + y*z))) ).

Original entry on oeis.org

1, 4, 64, 256, 16384, 65536, 1048576, 4194304, 1073741824, 4294967296, 68719476736, 274877906944, 17592186044416, 70368744177664, 1125899906842624, 4503599627370496, 4611686018427387904, 18446744073709551616, 295147905179352825856, 1180591620717411303424, 75557863725914323419136
Offset: 0

Views

Author

Stefano Spezia, Feb 16 2025

Keywords

Comments

Apparently a duplicate of A110258 and A056982. - R. J. Mathar, Feb 18 2025

Crossrefs

Cf. A268554, A381197 (numerators).

Programs

  • Mathematica
    a[n_]:=Denominator[SeriesCoefficient[1/Sqrt[1-(x+y+z+u*(x*y+x*z+y*z))],{x,0,n},{y,0,n},{z,0,n},{u,0,n}]]; Array[a,15,0]