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.

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

Views

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.