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.

A361703 Constant term in the expansion of (1 + w + x + y + z + 1/(w*x*y*z))^n.

Original entry on oeis.org

1, 1, 1, 1, 1, 121, 721, 2521, 6721, 15121, 143641, 1302841, 7579441, 32586841, 113753641, 509068561, 3599319361, 25076993761, 142188273361, 662296228561, 2933770097881, 15581813723281, 99333170493481, 623696622059281, 3466773281312881, 17406784944114721
Offset: 0

Views

Author

Seiichi Manyama, Mar 21 2023

Keywords

Comments

Diagonal of the rational function 1/(1 - (v^5 + w^5 + x^5 + y^5 + z^5 + v*w*x*y*z)). - Seiichi Manyama, Jul 04 2025

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\5, (4*k)!/k!^4*binomial(5*k, 4*k)*binomial(n, 5*k));

Formula

a(n) = Sum_{k=0..floor(n/5)} (4*k)!/k!^4 * binomial(5*k,4*k) * binomial(n,5*k) = Sum_{k=0..floor(n/5)} (5*k)!/k!^5 * binomial(n,5*k).
a(n) ~ 9 * 6^n / (sqrt(5) * Pi^2 * n^2). - Vaclav Kotesovec, Mar 25 2023