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.

A277667 Number of n-length words over a quaternary alphabet {a_1,a_2,...,a_4} avoiding consecutive letters a_i, a_{i+1}.

Original entry on oeis.org

1, 4, 13, 42, 136, 440, 1423, 4602, 14883, 48132, 155660, 503408, 1628033, 5265096, 17027441, 55067134, 178088372, 575941872, 1862609199, 6023720790, 19480850935, 63001517896, 203748351160, 658926832032, 2130984459505, 6891652526348, 22287762039781
Offset: 0

Views

Author

Alois P. Heinz, Oct 26 2016

Keywords

Examples

			a(3) = 42: 000, 002, 003, 020, 021, 022, 030, 031, 032, 033, 100, 102, 103, 110, 111, 113, 130, 131, 132, 133, 200, 202, 203, 210, 211, 213, 220, 221, 222, 300, 302, 303, 310, 311, 313, 320, 321, 322, 330, 331, 332, 333 (using alphabet {0, 1, 2, 3}).
		

Crossrefs

Column k=4 of A277666.

Programs

  • Maple
    a:= n-> (<<0|1|0|0>, <0|0|1|0>, <0|0|0|1>, <-1|2|-3|4>>^n)[4, 4]:
    seq(a(n), n=0..30);

Formula

G.f.: 1/(1 + Sum_{j=1..4} (5-j)*(-x)^j).