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.

A006675 Number of paths through an array.

Original entry on oeis.org

0, 0, 2, 15, 104, 770, 6264, 56196, 554112, 5973264, 69998400, 886897440, 12089295360, 176484597120, 2748022986240, 45472329504000, 796983880089600, 14751208762214400, 287543058350284800
Offset: 0

Views

Author

Keywords

Examples

			x*(1-x)^-2 * (-log(1-x)) = x^2 + (5/2)*x^3 + (13/3)*x^4 + (77/12)*x^5 + ...
		

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    a[n_] := n*n!*(HarmonicNumber[n]-1); Table[a[n], {n, 0, 18}] (* Jean-François Alcover, Nov 28 2011 *)

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

Extensions

More terms from Joe Keane (jgk(AT)jgk.org)