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.

A326528 Sum of the fifth largest parts of the partitions of n into 9 squarefree parts.

This page as a plain text file.
%I A326528 #5 Jul 12 2019 07:19:18
%S A326528 0,0,0,0,0,0,0,0,0,1,1,2,2,4,6,10,12,18,24,34,40,56,67,91,105,138,162,
%T A326528 209,237,304,352,441,504,630,726,893,1016,1236,1409,1700,1912,2287,
%U A326528 2579,3052,3417,4018,4492,5237,5824,6756,7508,8655,9561,10967,12114
%N A326528 Sum of the fifth largest parts of the partitions of n into 9 squarefree parts.
%H A326528 <a href="/index/Par#part">Index entries for sequences related to partitions</a>
%F A326528 a(n) = Sum_{q=1..floor(n/9)} Sum_{p=q..floor((n-q)/8)} Sum_{o=p..floor((n-p-q)/7)} Sum_{m=o..floor((n-o-p-q)/6)} Sum_{l=m..floor((n-m-o-p-q)/5)} Sum_{k=l..floor((n-l-m-o-p-q)/4)} Sum_{j=k..floor((n-k-l-m-o-p-q)/3)} Sum_{i=j..floor((n-j-k-l-m-o-p-q)/2)} mu(q)^2 * mu(p)^2 * mu(o)^2 * mu(m)^2 * mu(l)^2 * mu(k)^2 * mu(j)^2 * mu(i)^2 * mu(n-i-j-k-l-m-o-p-q)^2 * l, where mu is the Möbius function (A008683).
%F A326528 a(n) = A326523(n) - A326524(n) - A326525(n) - A326526(n) - A326527(n) - A326529(n) - A326530(n) - A326531(n) - A326532(n).
%t A326528 Table[Sum[Sum[Sum[Sum[Sum[Sum[Sum[Sum[l * MoebiusMu[q]^2 * MoebiusMu[p]^2 * MoebiusMu[o]^2 * MoebiusMu[m]^2 * MoebiusMu[l]^2 * MoebiusMu[k]^2 * MoebiusMu[j]^2 * MoebiusMu[i]^2*MoebiusMu[n - i - j - k - l - m - o - p - q]^2, {i, j, Floor[(n - j - k - l - m - o - p - q)/2]}], {j, k, Floor[(n - k - l - m - o - p - q)/3]}], {k, l, Floor[(n - l - m - o - p - q)/4]}], {l, m, Floor[(n - m - o - p - q)/5]}], {m, o, Floor[(n - o - p - q)/6]}], {o, p, Floor[(n - p - q)/7]}], {p, q, Floor[(n - q)/8]}], {q, Floor[n/9]}], {n, 0, 80}]
%Y A326528 Cf. A008683, A326522, A326523, A326524, A326525, A326526, A326527, A326529, A326530, A326531, A326532.
%K A326528 nonn
%O A326528 0,12
%A A326528 _Wesley Ivan Hurt_, Jul 11 2019