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.

User: Hung Viet Chu

Hung Viet Chu's wiki page.

Hung Viet Chu has authored 3 sequences.

A385106 a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) + a(n-4) with a(1) = 1, a(2) = 2, a(3) = 4, and a(4) = 7.

Original entry on oeis.org

1, 2, 4, 7, 12, 21, 38, 70, 129, 236, 429, 778, 1412, 2567, 4672, 8505, 15478, 28158, 51217, 93160, 169465, 308290, 560852, 1020311, 1856132, 3376605, 6142582, 11174374, 20328113, 36980404, 67273829, 122382762, 222635316, 405011895, 736786328, 1340341377, 2438312358, 4435711166
Offset: 1

Author

Hung Viet Chu, Jun 18 2025

Keywords

Comments

a(n) the number of subsets of {3, 6, 9, 12, ..., 3*n} that are Schreier and contain 3*n.

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{3,-3,1,1},{1, 2, 4, 7},38 ] (* or *) Rest[CoefficientList[Series[x*(1 - x + x^2)/(1 - 3*x + 3*x^2 - x^3 - x^4),{x,0,38}],x]] (* or *) a[1]=1;a[n_]:=2 + Sum[Binomial[n-i-1,j],{i,n-2} ,{j,0,3i-2} ];Array[a,38] (* James C. McMahon, Jun 24 2025 *)

Formula

a(n) = 2 + Sum_{i=1..n-2} Sum_{j=0..3i-2} binomial(n-i-1,j), for n > 1.
a(n) = A079398(3*n).
G.f.: x*(1 - x + x^2)/(1 - 3*x + 3*x^2 - x^3 - x^4).

A385107 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) + a(n-5) with a(1) = 1, a(2) = 2, a(3) = 4, a(4) = 8, and a(5) = 15.

Original entry on oeis.org

1, 2, 4, 8, 15, 27, 48, 86, 157, 292, 549, 1034, 1939, 3613, 6697, 12381, 22889, 42384, 78642, 146136, 271720, 505137, 938514, 1742620, 3234360, 6002359, 11140379, 20680696, 38398206, 71302165, 132404188, 245856269, 456491098, 847539571, 1573534749, 2921413881, 5423970485, 10070489177
Offset: 1

Author

Hung Viet Chu, Jun 18 2025

Keywords

Comments

a(n) is the number of subsets of {4, 8, 12,.., 4*n} that are Schreier and contain 4*n.

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{4, -6, 4, -1, 1}, {1, 2, 4, 8, 15}, 50] (* Paolo Xausa, Jun 25 2025 *)

Formula

a(n) = 2 + Sum_{i=1..n-2} Sum_{j=0..4i-2} binomial(n-i-1,j), for n > 1.
a(n) = A103372(4*n).
G.f.: x*(1 - 2*x + 2*x^2)/(1 - 4*x + 6*x^2 - 4*x^3 + x^4 - x^5).

A385142 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) + a(n-5) with a(1) = a(2) = a(3) = 0, a(4) = 1, and a(5) = 3.

Original entry on oeis.org

0, 0, 0, 1, 3, 6, 10, 15, 22, 35, 64, 129, 265, 529, 1013, 1873, 3394, 6126, 11148, 20552, 38303, 71760, 134408, 250880, 466361, 864339, 1600062, 2963186, 5494247, 10200142, 18952107, 35221440, 65442625, 121544393, 225655617, 418857277, 777451793, 1443184210, 2679343966
Offset: 1

Author

Hung Viet Chu, Jun 19 2025

Keywords

Comments

a(n) is the number of subsets of {4, 8, 12,.., 4*n} that are maximal Schreier and contain 4*n.

Crossrefs

Cf. A017827.

Programs

  • Mathematica
    LinearRecurrence[{4, -6, 4, -1, 1}, {0, 0, 0, 1, 3}, 50] (* Paolo Xausa, Jun 27 2025 *)

Formula

a(n) = Sum_{i=1..floor((n+1)/5)} binomial(n-i-1, 4i-2).
a(n) = A017827(4*n-6), n > 1.