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.

A308769 Sum of the second largest parts of the partitions of n into 4 squarefree parts.

Original entry on oeis.org

0, 0, 0, 0, 1, 1, 3, 4, 8, 8, 14, 15, 24, 25, 41, 45, 64, 64, 85, 93, 120, 123, 159, 172, 221, 222, 279, 291, 375, 386, 472, 494, 610, 612, 734, 745, 901, 899, 1075, 1067, 1297, 1272, 1493, 1490, 1765, 1757, 2046, 2076, 2398, 2408, 2743, 2774, 3187, 3177
Offset: 0

Views

Author

Wesley Ivan Hurt, Jun 23 2019

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Sum[Sum[i * MoebiusMu[k]^2*MoebiusMu[j]^2*MoebiusMu[i]^2* MoebiusMu[n - i - j - k]^2, {i, j, Floor[(n - j - k)/2]}], {j, k, Floor[(n - k)/3]}], {k, Floor[n/4]}], {n, 0, 100}]

Formula

a(n) = Sum_{k=1..floor(n/4)} Sum_{j=k..floor((n-k)/3)} Sum_{i=j..floor((n-j-k)/2)} mu(k)^2 * mu(j)^2 * mu(i)^2 * mu(n-i-j-k)^2 * i, where mu(n) is the Möbius function (A008683).
a(n) = A308783(n) - A308768(n) - A308762(n) - A308770(n).