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.

A302187 Number of 3D walks of type bcc.

Original entry on oeis.org

1, 2, 8, 30, 138, 620, 3060, 14910, 76650, 390852, 2063376, 10832052, 58264668, 312123240, 1702423008, 9256786110, 51036229530, 280696824980, 1560925457520, 8663089672380, 48512836025940, 271229902496280, 1527733861191720, 8593482390429300, 48642125421855420, 275014629509319000
Offset: 0

Views

Author

N. J. A. Sloane, Apr 09 2018

Keywords

Comments

See Dershowitz (2017) for precise definition.

Crossrefs

Programs

  • Python
    from math import comb as binomial
    def a(n):
        return sum(binomial(n, k)*binomial(k, k//2)*binomial(n-k, (n-k)//2)**2 for k in range(n+1))
    print([a(n) for n in range(26)]) # Mélika Tebni, Nov 25 2024

Formula

a(n) = Sum_{k=0..n} binomial(n, k)*A001405(k)*A018224(n-k). - Mélika Tebni, Nov 25 2024

Extensions

a(12)-a(25) from Nachum Dershowitz, Aug 03 2020