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.
%I A335234 #69 Jun 15 2020 23:21:07 %S A335234 1,1,1,1,2,1,1,1,2,1,1,2,3,1,1,1,2,3,2,1,1,1,1,1,4,1,3,2,1,2,4,1,1,1, %T A335234 1,2,3,1,5,1,3,2,1,1,1,5,1,2,1,4,1,1,1,1,6,3,1,2,1,1,1,2,4,1,1,6,1,1, %U A335234 2,2,3,1,1,1,4,7,1,5,1,1,2,1,3,1,2,7,1,1,1,1,2,5,4 %N A335234 Number of partitions of k_n into two parts (s,t) such that k_n | s*t, where k_n is the n-th nonsquarefree number (A013929). %C A335234 a(n) >= 1. %H A335234 <a href="/index/Par#part">Index entries for sequences related to partitions</a> %e A335234 a(4) = 1; The 4th nonsquarefree number, A013929(4) = 12 has 6 partitions into two parts: (11,1), (10,2), (9,3), (8,4), (7,5) and (6,6) with corresponding products 11, 20, 27, 32, 35, 36. A013929(4) = 12 only divides the product 36, so a(4) = 1. %e A335234 a(5) = 2; The 5th nonsquarefree number, A013929(5) = 16 has 8 partitions into two parts: (15,1), (14,2), (13,3), (12,4), (11,5), (10,6), (9,7) and (8,8) with corresponding products 15, 28, 39, 48, 55, 60, 63 and 64. A013929(5) = 16 divides two of these products, 48 and 64, so a(5) = 2. %t A335234 Table[If[Sum[(1 - Ceiling[(i*(n - i))/n] + Floor[(i*(n - i))/n]), {i, Floor[n/2]}] > 0, Sum[(1 - Ceiling[(i*(n - i))/n] + Floor[(i*(n - i))/n]), {i, Floor[n/2]}], {}], {n, 300}] // Flatten %Y A335234 Cf. A013929. %K A335234 nonn %O A335234 1,5 %A A335234 _Wesley Ivan Hurt_, Jun 09 2020