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.

Showing 1-1 of 1 results.

A385717 a(n) = a(n-1) + a(n-2) + a(n-3), with a(1) = 4, a(2) = 13, a(3) = 42.

Original entry on oeis.org

4, 13, 42, 59, 114, 215, 388, 717, 1320, 2425, 4462, 8207, 15094, 27763, 51064, 93921, 172748, 317733, 584402, 1074883, 1977018, 3636303, 6688204, 12301525, 22626032, 41615761, 76543318, 140785111, 258944190, 476272619
Offset: 1

Views

Author

Greg Dresden and Jiarui Zhou, Jul 07 2025

Keywords

Comments

For n >= 3, a(n) is the number of ways to tile this shape of length n with 1 X 1 squares, 1 X 2 dominos, and 1 X 3 trominos:
_
|||_|||_|||
|||
As an example, here is one of the a(8) = 717 ways to tile this shape of length 8:
_
| ||_________
|||

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{1, 1, 1}, {4, 13, 42}, 30]

Formula

a(n) = 9*A354080(n-2) + 2*A100683(n) for n >= 2.
G.f.: x*(4 + 9*x + 25*x^2)/(1 - x - x^2 - x^3). - Stefano Spezia, Jul 08 2025
Showing 1-1 of 1 results.