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.

A163089 n! / (Product{k|n} k$). Here '$' denotes the swinging factorial function (A056040).

Original entry on oeis.org

1, 1, 1, 1, 2, 4, 3, 36, 48, 96, 240, 14400, 2160, 518400, 90720, 141120, 1935360, 1625702400, 870912, 131681894400, 145152000, 15676416000, 287400960000, 1593350922240000, 14780620800, 7648084426752000, 1614043791360000
Offset: 0

Views

Author

Peter Luschny, Jul 21 2009

Keywords

Crossrefs

Programs

  • Maple
    a := n -> n! / A163087(n):
  • Mathematica
    sf[n_] := With[{f = Floor[n/2]}, Pochhammer[f+1, n-f]/f!]; a[0] = 1; a[n_] := n!/Product[sf[k], {k, Divisors[n]}]; Table[a[n], {n, 0, 26}] (* Jean-François Alcover, Jul 26 2013 *)