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.

A103469 Number of polyominoes consisting of 3 regular unit n-gons.

Original entry on oeis.org

1, 2, 2, 3, 2, 3, 3, 4, 4, 5, 4, 5, 5, 6, 6, 7, 6, 7, 7, 8, 8, 9, 8, 9, 9, 10, 10, 11, 10, 11, 11, 12, 12, 13, 12, 13, 13, 14, 14, 15, 14, 15, 15, 16, 16, 17, 16, 17, 17, 18, 18, 19, 18, 19, 19, 20, 20, 21, 20, 21, 21, 22, 22, 23, 22, 23, 23, 24, 24, 25, 24, 25, 25, 26, 26, 27, 26, 27
Offset: 3

Views

Author

Sascha Kurz, Feb 07 2005

Keywords

Comments

Conjecture: if n > 3, then a(n + 3) is the number of connected components of the subgraph that is vertex-induced on Collatz's graph by the vertex subset {1, ..., n} (see Problem 3.11 of my article, available from the links). - Lorenzo Sauras Altuzarra, Apr 07 2020 [Corrected by Pontus von Brömssen, Jan 22 2021]

Examples

			a(3)=1 because there is only one polyiamond consisting of 3 triangles and a(4)=2 because there are 2 polyominoes consisting of 3 squares.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{1,0,0,0,0,1,-1},{1,2,2,3,2,3,3},80] (* Harvey P. Dale, Sep 18 2016 *)
  • PARI
    Vec(-x^3*(x^6-x^5+x^4-x^3-x-1)/((x-1)^2*(x+1)*(x^2-x+1)*(x^2+x+1)) + O(x^100)) \\ Colin Barker, Jan 19 2015

Formula

a(n) = floor((n-2)/2) - floor((n-1)/6) + 1.
G.f.: -x^3*(x^6-x^5+x^4-x^3-x-1) / ((x-1)^2*(x+1)*(x^2-x+1)*(x^2+x+1)). - Colin Barker, Jan 19 2015