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.

A184276 Number of distinct n X 5 toroidal 0..3 arrays.

Original entry on oeis.org

208, 104968, 71582944, 54975633976, 45035996274688, 38430716856090160, 33731189163354610720, 30223145490393217217464, 27509778650786228378836960, 25353012004564610547932704768, 23601349356976489220593165438048, 22153799929748597900945512768786000
Offset: 1

Views

Author

R. H. Hardin, Jan 10 2011

Keywords

Crossrefs

Column 5 of A184277.

Programs

  • Mathematica
    T[n_, k_] := (1/(n*k))*Sum[Sum[EulerPhi[c]*EulerPhi[d]*4^(n*k/LCM[c, d]), {d, Divisors[k]}], {c, Divisors[n]}]; a[n_] := T[n, 5]; Array[a, 12] (* Jean-François Alcover, Nov 01 2017, after Andrew Howroyd *)
  • PARI
    a(n) = my(k=5); (1/(n*k)) * sumdiv(n, c, sumdiv(k, d, eulerphi(c) * eulerphi(d) * 4^(n*k/lcm(c, d)))); \\ Michel Marcus, Nov 01 2017

Extensions

Terms a(6) and beyond from Andrew Howroyd, Sep 27 2017