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.

Previous Showing 21-22 of 22 results.

A238551 Number T(n,k) of equivalence classes of ways of placing k 3 X 3 tiles in an n X 6 rectangle under all symmetry operations of the rectangle; irregular triangle T(n,k), n>=3, 0<=k<=2*floor(n/3), read by rows.

Original entry on oeis.org

1, 2, 1, 1, 2, 2, 1, 4, 4, 1, 4, 11, 3, 1, 1, 6, 21, 13, 4, 1, 6, 36, 32, 13, 1, 8, 54, 82, 49, 8, 1, 1, 8, 77, 165, 151, 44, 6, 1, 10, 103, 319, 382, 173, 31, 1, 10, 134, 530, 867, 559, 164, 12, 1, 1, 12, 168, 852, 1789, 1632, 705, 119, 9
Offset: 3

Views

Author

Keywords

Examples

			The first 12 rows of T(n,k) are:
.\ k  0     1     2     3     4     5     6     7     8
n
3     1     2     1
4     1     2     2
5     1     4     4
6     1     4    11     3     1
7     1     6    21    13     4
8     1     6    36    32    13
9     1     8    54    82    49     8     1
10    1     8    77   165   151    44     6
11    1    10   103   319   382   173    31
12    1    10   134   530   867   559   164    12     1
13    1    12   168   852  1789  1632   705   119     9
14    1    12   207  1255  3409  4074  2406   618    66
		

Crossrefs

Extensions

Terms corrected and xrefs updated by Christopher Hunt Gribble, Apr 27 2015
Terms a(57) and beyond from Andrew Howroyd, May 29 2017

A257523 Number T(n,k) of equivalence classes of ways of placing k 4 X 4 tiles in an n X 7 rectangle under all symmetry operations of the rectangle; irregular triangle T(n,k), n>=4, 0<=k<=floor(n/4), read by rows.

Original entry on oeis.org

1, 2, 1, 2, 1, 4, 1, 4, 1, 6, 6, 1, 6, 14, 1, 8, 28, 1, 8, 44, 1, 10, 66, 20, 1, 10, 90, 64, 1, 12, 120, 168, 1, 12, 152, 320, 1, 14, 190, 572, 72, 1, 14, 230, 896, 328, 1, 16, 276, 1360, 984, 1, 16, 324, 1920, 2264, 1, 18, 378, 2660, 4528, 272
Offset: 4

Views

Author

Keywords

Examples

			The first 9 rows of T(n,k) are:
.\ k    0      1      2     3
n
4       1      2
5       1      2
6       1      4
7       1      4
8       1      6      6
9       1      6     14
10      1      8     28
11      1      8     44
12      1     10     66    20
13      1     10     90    64
14      1     12    120   168
15      1     12    152   320
		

Crossrefs

Programs

  • PARI
    T(n,k)={(4^k*binomial(n-3*k,k) + ((n%2==0||k%2==0)+(k%2==0)+(k==0)) * 4^((k+1)\2)*binomial((n-3*k-(k%2)-(n%2))/2,k\2))/4}
    for(n=4,15,for(k=0,(n\4), print1(T(n,k), ", "));print) \\ Andrew Howroyd, May 29 2017

Extensions

Terms a(24) and beyond by Andrew Howroyd, May 29 2017
Previous Showing 21-22 of 22 results.