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.

A306843 a(n) = Sum_{d|n} binomial(n,d)^3.

Original entry on oeis.org

1, 9, 28, 281, 126, 11592, 344, 365465, 593434, 16095134, 1332, 921113624, 2198, 40424993884, 27175280778, 2137777203097, 4914, 121331143444050, 6860, 6310445825215406, 1572228697798262, 351047164202718608, 12168, 20174300460344963864, 149975199312626
Offset: 1

Views

Author

Seiichi Manyama, Mar 12 2019

Keywords

Crossrefs

Sum_{d|n} binomial(n,d)^b: A000005 (b=0), A056045 (b=1), A174462 (b=2), this sequence (b=3).

Programs

  • Mathematica
    a[n_] := DivisorSum[n, Binomial[n, #]^3 &]; Array[a, 25] (* Amiram Eldar, Jun 13 2021 *)
  • PARI
    {a(n) = sumdiv(n, d, binomial(n, d)^3)}

Formula

If p is prime, a(p) = A001093(p).