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.

A368367 AGM transform of factorials.

Original entry on oeis.org

0, 1, 405, 1112193, 83733135993, 442674314320893489, 252729042985343953175786217, 20874524971928676951126081870191637441, 321062452616441231930929630956482460885924054669273, 1152310647749051621143585533734466768135769634034830754169423308849
Offset: 1

Views

Author

N. J. A. Sloane, Jan 24 2024

Keywords

Comments

See A368366 for further information.

Crossrefs

Programs

  • Mathematica
    A368367[n_] := With[{f = Range[n]!}, Total[f]^n - n^n*Apply[Times, f]];
    Array[A368367, 10] (* Paolo Xausa, Jan 29 2024 *)
  • Python
    from math import prod, factorial
    def A368367(n): return sum(factorial(i) for i in range(1,n+1))**n-n**n*prod(i**(n-i+1) for i in range(2,n+1)) # Chai Wah Wu, Jan 25 2024