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.

A260620 Arithmetic derivative of superfactorial(n).

Original entry on oeis.org

0, 0, 1, 16, 912, 179712, 200724480, 1389079756800, 78810485096448000, 38096713995308236800000, 177372596340389981454336000000, 8666143442523657424202209689600000000, 5080543621153782266150614213475696640000000000
Offset: 0

Views

Author

Matthew Campbell, Sep 18 2015

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n) option remember; `if`(n<2, 0,
           b(n-1)*n + n!*add(i[2]/i[1], i=ifactors(n)[2]))
        end:
    s:= proc(n) option remember; `if`(n=0, 1, n!*s(n-1)) end:
    a:= proc(n) option remember; `if`(n=0, 0,
           b(n)*s(n-1)+n!*a(n-1))
        end:
    seq(a(n), n=0..15);  # Alois P. Heinz, Sep 18 2015
  • Mathematica
    a[n_] := If[n<2, 0, With[{g = BarnesG[n+2]}, g Sum[{p, e} = pe; e/p, {pe, FactorInteger[g]}]]];
    a /@ Range[0, 15] (* Jean-François Alcover, Nov 14 2020 *)

Formula

a(n) = A003415(A000178(n)).

Extensions

More terms from Alois P. Heinz, Sep 18 2015