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.

A284840 Number of quinternary strings avoiding consecutive digits i,i+1 and i,i+2.

Original entry on oeis.org

1, 5, 18, 63, 224, 799, 2846, 10132, 36073, 128438, 457304, 1628224, 5797263, 20641062, 73492179, 261667749, 931663897, 3317174627, 11810748015, 42051982296, 149725420655, 533095002085, 1898076358760, 6758070980980, 24062005289281, 85672390859855
Offset: 0

Views

Author

Alois P. Heinz, Apr 03 2017

Keywords

Examples

			a(2) = 18: 00, 03, 04, 10, 11, 14, 20, 21, 22, 30, 31, 32, 33, 40, 41, 42, 43, 44.
		

Crossrefs

Cf. A277668.

Programs

  • Maple
    a:= n->(<<0|1|0|0|0>, <0|0|1|0|0>, <0|0|0|1|0>,
             <0|0|0|0|1>, <1|-5|8|-7|5>>^n)[5$2]:
    seq(a(n), n=0..30);

Formula

G.f.: -1/(x^5-5*x^4+8*x^3-7*x^2+5*x-1).