login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A006675
Number of paths through an array.
(Formerly M2079)
8
0, 0, 2, 15, 104, 770, 6264, 56196, 554112, 5973264, 69998400, 886897440, 12089295360, 176484597120, 2748022986240, 45472329504000, 796983880089600, 14751208762214400, 287543058350284800
OFFSET
0,3
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
A. M. Khidr and B. S. El-Desouky, A symmetric sum involving the Stirling numbers of the first kind, European J. Combin., 5 (1984), 51-54.
FORMULA
a(n) = n*n! * (H(n) - 1) where H(n) = Sum_{k=1..n} 1/k.
E.g.f. A(x) = x*(1-x)^-2 * (-log(1-x)).
a(n) = A001705(n) - A000254(n). - Peter Bala, Feb 12 2019
EXAMPLE
x*(1-x)^-2 * (-log(1-x)) = x^2 + (5/2)*x^3 + (13/3)*x^4 + (77/12)*x^5 + ...
MATHEMATICA
a[n_] := n*n!*(HarmonicNumber[n]-1); Table[a[n], {n, 0, 18}] (* Jean-François Alcover, Nov 28 2011 *)
CROSSREFS
Sequence in context: A293045 A372264 A081018 * A215643 A332048 A295268
KEYWORD
nonn,easy,nice
EXTENSIONS
More terms from Joe Keane (jgk(AT)jgk.org)
STATUS
approved