A291000
p-INVERT of (1,1,1,1,1,...), where p(S) = 1 - S - S^2 - S^3.
Original entry on oeis.org
1, 3, 9, 26, 74, 210, 596, 1692, 4804, 13640, 38728, 109960, 312208, 886448, 2516880, 7146144, 20289952, 57608992, 163568448, 464417728, 1318615104, 3743926400, 10630080640, 30181847168, 85694918912, 243312448256, 690833811712, 1961475291648, 5569190816256
Offset: 0
-
z = 60; s = x/(1 - x); p = 1 - s - s^2 - s^3;
Drop[CoefficientList[Series[s, {x, 0, z}], x], 1] (* A000012 *)
Drop[CoefficientList[Series[1/p, {x, 0, z}], x], 1] (* A291000 *)
A369809
Expansion of 1/(1 - x^6/(1-x)^7).
Original entry on oeis.org
1, 0, 0, 0, 0, 0, 1, 7, 28, 84, 210, 462, 925, 1730, 3108, 5565, 10388, 20944, 45697, 104673, 242481, 553455, 1229305, 2650221, 5565127, 11465758, 23397041, 47757235, 98317135, 205108561, 433747259, 926655972, 1989584722, 4271185538, 9133958765, 19421679515
Offset: 0
-
my(N=40, x='x+O('x^N)); Vec(1/(1-x^6/(1-x)^7))
-
a(n) = sum(k=0, n\6, binomial(n-1+k, n-6*k));
A368475
Expansion of o.g.f. (1-x)^5/((1-x)^5 - x^4).
Original entry on oeis.org
1, 0, 0, 0, 1, 5, 15, 35, 71, 136, 265, 550, 1211, 2732, 6126, 13485, 29191, 62648, 134408, 289656, 627401, 1363124, 2963186, 6434484, 13951852, 30221185, 65442625, 141745045, 307137901, 665732417, 1443184210, 3128438335, 6780867186, 14696002913, 31848721632
Offset: 0
Since there are C(4,4) = 1 type of 4, C(5,4) = 5 types of 5, C(6,4) = 15 types of 6, C(7,4) = 35 types of 7, C(8,4) = 70 types of 8, and (12,4) = 495 types of 12, we can write 12 in the following ways:
12: 495 ways;
8+4: 70 ways;
7+5: 175 ways;
6+6: 225 ways;
5+7: 175 ways;
4+8: 70 ways;
4+4+4: 1 way, for a total of 1211 ways.
-
CoefficientList[Series[(1 - x)^5/((1 - x)^5 - x^4), {x, 0, 50}], x] (* Wesley Ivan Hurt, Dec 26 2023 *)
-
Vec((1-x)^5/((1-x)^5 - x^4) + O(x^40)) \\ Michel Marcus, Dec 27 2023
A369794
Expansion of 1/(1 - x^5/(1-x)^6).
Original entry on oeis.org
1, 0, 0, 0, 0, 1, 6, 21, 56, 126, 253, 474, 870, 1651, 3367, 7372, 16762, 38183, 85290, 185573, 394555, 826752, 1724816, 3613968, 7642004, 16313856, 35052905, 75487110, 162349105, 348018300, 743376838, 1583718457, 3370144462, 7173308802, 15285181447
Offset: 0
A290999
p-INVERT of (1,1,1,1,1,...), where p(S) = 1 - 6*S^2.
Original entry on oeis.org
0, 6, 12, 54, 168, 606, 2052, 7134, 24528, 84726, 292092, 1007814, 3476088, 11991246, 41362932, 142682094, 492178848, 1697768166, 5856430572, 20201701974, 69685556808, 240379623486, 829187031012, 2860272179454, 9866479513968, 34034319925206, 117401037420252
Offset: 0
-
[n le 2 select 6*(n-1) else 2*Self(n-1) +5*Self(n-2): n in [1..41]]; // G. C. Greubel, Apr 25 2023
-
z = 60; s = x/(1 - x); p = 1 - s^6;
Drop[CoefficientList[Series[s, {x, 0, z}], x], 1] (* A000012 *)
Drop[CoefficientList[Series[1/p, {x, 0, z}], x], 1] (* A290999 *)
LinearRecurrence[{2,5},{0,6},30] (* Harvey P. Dale, Mar 25 2018 *)
-
A290999=BinaryRecurrenceSequence(2,5,0,6)
[A290999(n) for n in range(41)] # G. C. Greubel, Apr 25 2023
Showing 1-5 of 5 results.
Comments