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]
EXAMPLE
1; 1,1; 2,0,2; 2,2,0,6; 4,0,0,0,24; 2,6,8,0,0,120; ...
MATHEMATICA
a[n_, k_] := If[ Divisible[n, k], EulerPhi[n/k]*(n/k)^k*k!/n, 0]; Flatten[ Table[ a[n, k], {n, 1, 12}, {k, 1, n}]](* Jean-François Alcover, Feb 17 2012 *)
PROG
(Haskell)
a047917 n k = a047917_tabl !! (n-1) !! (k-1)
a047917_row n = a047917_tabl !! (n-1)
a047917_tabl = zipWith (zipWith div) a047916_tabl a002024_tabl
-- Reinhard Zumkeller, Mar 19 2014
CROSSREFS
KEYWORD
AUTHOR
EXTENSIONS
Offset corrected by Reinhard Zumkeller, Mar 19 2014
STATUS
approved