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.

A260619 Arithmetic derivative of hyperfactorial(n).

Original entry on oeis.org

0, 0, 4, 216, 165888, 604800000, 48372940800000, 43156963184025600000, 1392410948543163924480000000, 668916177911197542484208831692800000, 8199617664717905359483850194944000000000000000, 2401010998878767104110478543683244630474752000000000000000
Offset: 0

Views

Author

Matthew Campbell, Sep 17 2015

Keywords

Crossrefs

Programs

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

Formula

a(n) = A003415(A002109(n)).
a(n) = A002109(n)*A190121(n) (conjectured).

Extensions

More terms from Alois P. Heinz, Sep 18 2015