A354668
Triangle read by rows: T(n,k) is the number of tilings of an (n+2*k) X 1 board using k (1,2;3)-combs and n-k squares.
Original entry on oeis.org
1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 2, 0, 1, 1, 3, 4, 0, 0, 1, 2, 5, 8, 0, 0, 1, 1, 3, 8, 12, 0, 3, 3, 0, 1, 4, 12, 18, 9, 12, 9, 0, 0, 1, 5, 16, 27, 25, 29, 27, 0, 0, 1, 1, 6, 21, 42, 51, 66, 54, 0, 6, 4, 0, 1, 7, 27, 62, 95, 135, 108, 36
Offset: 0
Triangle begins:
1;
1, 0;
1, 0, 0;
1, 0, 0, 1;
1, 0, 1, 2, 0;
1, 1, 3, 4, 0, 0;
1, 2, 5, 8, 0, 0, 1;
1, 3, 8, 12, 0, 3, 3, 0;
1, 4, 12, 18, 9, 12, 9, 0, 0;
1, 5, 16, 27, 25, 29, 27, 0, 0, 1;
1, 6, 21, 42, 51, 66, 54, 0, 6, 4, 0;
1, 7, 27, 62, 95, 135, 108, 36, 30, 16, 0, 0;
...
Sums over k of T(n-2*k,k) are
A224810.
Other members of the family of triangles:
A007318 (m=1,t=2),
A059259 (m=2,t=2),
A350110 (m=3,t=2),
A350111 (m=4,t=2),
A350112 (m=5,t=2),
A354665 (m=2,t=3),
A354666 (m=2,t=4),
A354667 (m=2,t=5).
-
f[n_]:=If[n<0, 0, f[n-1]+x*f[n-3]+KroneckerDelta[n,0]]; T[n_, k_]:=Module[{j=Floor[(n+2*k)/3], r=Mod[n+2*k,3]}, Coefficient[f[j]^(3-r)*f[j+1]^r, x, k]]; Flatten@Table[T[n,k], {n, 0, 11}, {k, 0, n}]
A224811
Number of subsets of {1,2,...,n-8} without differences equal to 2, 4, 6 or 8.
Original entry on oeis.org
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 6, 9, 12, 16, 20, 25, 30, 36, 48, 64, 88, 121, 165, 225, 300, 400, 520, 676, 884, 1156, 1530, 2025, 2700, 3600, 4800, 6400, 8480, 11236, 14840, 19600, 25900, 34225, 45325, 60025, 79625, 105625, 140075, 185761, 246101, 326041, 431676, 571536, 756756, 1002001, 1327326, 1758276, 2329782, 3087049, 4090296, 5419584
Offset: 0
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- Michael A. Allen, On a Two-Parameter Family of Generalizations of Pascal's Triangle, arXiv:2209.01377 [math.CO], 2022.
- Vladimir Baltic, On the number of certain types of strongly restricted permutations, Applicable Analysis and Discrete Mathematics Vol. 4, No 1 (April, 2010), 119-135
- Index entries for linear recurrences with constant coefficients, signature (1, 0, 0, 0, 1, -1, 1, -1, 1, 2, -1, 1, 0, 0, -2, 1, -2, 0, 0, -1, 0, 0, 0, 0, 1).
-
CoefficientList[Series[(1 - x^10 - x^5 - x^7 + x^15)/((1 - x)*(1 + x)*(x^2 - x + 1)*(x^3 + x^2 - 1)*(x^6 - x^2 - 1)*(x^12 + x^10 + x^8 + 2*x^6 + x^4 + 1)), {x, 0, 50}], x] (* G. C. Greubel, Oct 28 2017 *)
-
x='x+O('x^50); Vec((1-x^10-x^5-x^7+x^15)/((1-x)*(1+x)*(x^2-x+1)*( x^3+x^2-1)*(x^6-x^2-1)*(x^12+x^10+x^8+2*x^6+x^4+1) )) \\ G. C. Greubel, Oct 28 2017
A376743
Number of permutations (p(1),p(2),...,p(n)) of (1,2,...,n) such that p(i)-i is in {-2,-1,4} for all i=1,...,n.
Original entry on oeis.org
1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 5, 5, 6, 8, 11, 15, 25, 35, 46, 61, 85, 125, 175, 245, 341, 470, 650, 925, 1300, 1810, 2521, 3520, 4915, 6880, 9640, 13476, 18801, 26251, 36721, 51346, 71776, 100335, 140210, 195886, 273813, 382821, 535105, 747850, 1045220
Offset: 0
- D. H. Lehmer, Permutations with strongly restricted displacements. Combinatorial theory and its applications, II (Proc. Colloq., Balatonfured, 1969), North-Holland, Amsterdam, 1970, pp. 755-770.
- Michael A. Allen and Kenneth Edwards, Connections between two classes of generalized Fibonacci numbers squared and permanents of (0,1) Toeplitz matrices, Lin. Multilin. Alg. 72:13 (2024) 2091-2103.
- Vladimir Baltic, On the number of certain types of strongly restricted permutations, Applicable Analysis and Discrete Mathematics, 4(1) (2010), 119-135.
- Kenneth Edwards and Michael A. Allen, Strongly restricted permutations and tiling with fences, Discrete Applied Mathematics, 187 (2015), 82-90.
- Index entries for linear recurrences with constant coefficients, signature (0,0,1,1,1,2,1,0,-2,-2,0,-1,0,0,1).
See comments for other sequences related to strongly restricted permutations.
-
CoefficientList[Series[(1 - x^3 - x^4 - x^6 + x^9)/(1 - x^3 - x^4 - x^5 - 2*x^6 - x^7 + 2*x^9 + 2*x^10 + x^12 - x^15),{x,0,49}],x]
LinearRecurrence[{0, 0, 1, 1, 1, 2, 1, 0, -2, -2, 0, -1, 0, 0, 1}, {1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 5, 5, 6, 8}, 50]
Showing 1-3 of 3 results.
Comments