OFFSET
1,4
REFERENCES
J. E. A. Steggall, On the numbers of patterns which can be derived from certain elements, Mess. Math., 37 (1907), 56-61.
LINKS
Reinhard Zumkeller, Rows n = 1..125 of triangle, flattened
C. L. Mallows and N. J. A. Sloane, Notes on A002618, A002619, etc.
N. J. A. Sloane, Notes on A002618, A002619, etc.
J. E. A. Steggall, On the numbers of patterns which can be derived from certain elements, Mess. Math., 37 (1907), 56-61.
J. E. A. Steggall, On the numbers of patterns which can be derived from certain elements, Mess. Math., 37 (1907), 56-61. [Annotated scanned copy. Note that the scanned pages are out of order]
MATHEMATICA
U[n_, k_] := If[Divisible[n, k], EulerPhi[n/k]*(n/k)^k*k!, 0]; a[n_, k_] := Sum[If[Divisible[n, k], MoebiusMu[d]*U[n, k/d], 0], {d, Divisors[k]}]; row[n_] := Table[a[n, k], {k, 1, n}]/n; Table[row[n], {n, 1, 12}] // Flatten (* Jean-François Alcover, Nov 21 2012, after A047918 *)
PROG
(Haskell)
a047919 n k = a047919_tabl !! (n-1) !! (k-1)
a047919_row n = a047919_tabl !! (n-1)
a047919_tabl = zipWith (zipWith div) a047918_tabl a002024_tabl
-- Reinhard Zumkeller, Mar 19 2014
CROSSREFS
KEYWORD
AUTHOR
EXTENSIONS
Offset corrected by Reinhard Zumkeller, Mar 19 2014
STATUS
approved