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.

A162985 Number of Dyck paths with no UUU's and no DDD's of semilength n and having no UUDUDD's (U=(1,1), D=(1,-1)).

Original entry on oeis.org

1, 1, 2, 3, 6, 12, 25, 53, 114, 249, 550, 1227, 2760, 6253, 14256, 32682, 75293, 174224, 404741, 943622, 2207135, 5177817, 12179904, 28722736, 67890481, 160812128, 381671061, 907529504, 2161622683, 5157014539, 12321750366, 29482362166
Offset: 0

Views

Author

Emeric Deutsch, Oct 11 2009

Keywords

Comments

a(n) = A162984(n,0).

Examples

			a(3)=3 because we have UDUDUD, UDUUDD, and UUDDUD.
		

Crossrefs

Cf. A162984.

Programs

  • Maple
    G := ((1-z-z^2+z^3-sqrt(1-2*z-z^2-z^4-2*z^5+z^6))*1/2)/z^3: Gser := series(G, z = 0, 36): seq(coeff(Gser, z, n), n = 0 .. 31);

Formula

G.f. = G(z) satisfies G = 1 + zG + z^2*G + z^3*G(G-1).
D-finite with recurrence (n+3)*a(n) +(-2*n-3)*a(n-1) -n*a(n-2) +(-n+3)*a(n-4) +(-2*n+9)*a(n-5) +(n-6)*a(n-6)=0. - R. J. Mathar, Jul 22 2022