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.

A294101 Number of partitions of n into two parts such that one is squarefree and the other is nonsquarefree.

This page as a plain text file.
%I A294101 #13 Jul 16 2025 09:11:25
%S A294101 0,0,0,0,1,1,1,0,2,3,3,1,2,4,4,1,3,4,6,2,5,5,7,2,6,7,7,4,7,9,9,4,8,8,
%T A294101 10,1,9,11,11,4,10,12,10,4,9,14,14,5,11,15,17,5,12,13,19,8,14,14,18,8,
%U A294101 15,17,17,9,17,19,19,7,18,18,22,3,19,19,21,8
%N A294101 Number of partitions of n into two parts such that one is squarefree and the other is nonsquarefree.
%H A294101 <a href="/index/Par#part">Index entries for sequences related to partitions</a>
%F A294101 a(n) = floor(n/2) - Sum_{i=1..floor(n/2)} [mu(i)^2 = mu(n-i)^2], where [] is the Iverson bracket.
%F A294101 From _Wesley Ivan Hurt_, Jul 16 2025: (Start)
%F A294101 a(n) = A294232(n) + A294233(n).
%F A294101 a(n) = A262991(n) - 2*A071068(n). (End)
%t A294101 Table[Floor[n/2] - Sum[KroneckerDelta[MoebiusMu[k]^2, MoebiusMu[n - k]^2], {k, Floor[n/2]}], {n, 80}]
%Y A294101 Cf. A008683 (mu), A008966, A071068, A262868, A262869, A262991, A294100, A294232, A294233.
%K A294101 nonn,easy
%O A294101 1,9
%A A294101 _Wesley Ivan Hurt_, Oct 22 2017