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.

A203533 a(n) = A203530(n)/A000178(n-1); A000178 = (superfactorials).

Original entry on oeis.org

1, 10, 840, 464100, 1481407200, 32851686067200, 5186361382800998400, 4436556151786001058816000, 19667253420867342693731328000000, 605862171333980479840975997239296000000, 132207384898194165523202154782408753283072000000
Offset: 1

Views

Author

Clark Kimberling, Jan 03 2012

Keywords

Comments

It is conjectured that every term is an integer.

Crossrefs

Programs

  • Mathematica
    t = Table[If[PrimeQ[k], 0, k], {k, 1, 100}];
    composite = Rest[Rest[Union[t]]]       (* A002808 *)
    f[j_] := composite[[j]]; z = 20;
    v[n_] := Product[Product[f[k] + f[j], {j, 1, k - 1}], {k, 2, n}]
    d[n_] := Product[(i - 1)!, {i, 1, n}]  (* A000178 *)
    Table[v[n], {n, 1, z}]                 (* A203530 *)
    Table[v[n + 1]/v[n], {n, 1, z - 1}]    (* A203532 *)
    Table[v[n]/d[n], {n, 1, 20}]           (* A203533 *)