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”).

A171858
Number of n-step up-side self-avoiding walks on the lattice strip {0,1,2,3} x Z (up-side means that the walks move up and sideways but not down).
0
1, 2, 4, 9, 19, 39, 79, 161, 330, 678, 1392, 2855, 5853, 12000, 24607, 50463, 103487, 212220, 435191, 892428, 1830073, 3752882, 7695938, 15781850, 32363392, 66366683, 136096274, 279088794, 572319539, 1173639562, 2406749561
OFFSET
0,2
FORMULA
G.f.: (1+z)(1 - z + z^2 + z^3)/(1 - 2z + z^3 - 2z^4 - z^5).
EXAMPLE
a(3)=9 because we have UUU, UUR, URU, URR, RUU, RUR, RRU, RRR, and RUL, where U, L, and R denote up, left, and right steps, respectively.
MAPLE
g := (1+z)*(1-z+z^2+z^3)/(1-2*z+z^3-2*z^4-z^5): gser := series(g, z = 0, 43): seq(coeff(gser, z, n), n = 0 .. 30);
CROSSREFS
Sequence in context: A293322 A267157 A054135 * A099568 A018001 A018099
KEYWORD
nonn,easy
AUTHOR
Emeric Deutsch, Mar 31 2010
STATUS
approved