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.

A282380 Number of ways to write n as a sum of two unordered nonsquarefree numbers.

This page as a plain text file.
%I A282380 #10 Feb 16 2017 03:19:33
%S A282380 0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,2,1,1,0,2,1,1,0,3,1,1,1,3,2,1,1,4,2,2,
%T A282380 1,6,2,1,1,5,2,1,2,5,3,1,1,6,3,2,1,7,4,4,1,7,4,4,2,7,4,3,3,8,4,3,3,9,
%U A282380 4,4,2,12,4,4,3,10,5,3,4,10,6,3,3,11,5,3,3,12,5,6,3,11,6,5,4,12,5,5,7,14,5,6,5,14,5,6
%N A282380 Number of ways to write n as a sum of two unordered nonsquarefree numbers.
%H A282380 Altug Alkan, <a href="/A282380/b282380.txt">Table of n, a(n) for n = 1..10000</a>
%e A282380 a(16) = 2 because 16 = 4 + 12 and 16 = 8 + 8 are only corresponding solutions.
%o A282380 (PARI) a(n) = sum(k=1, n\2, !issquarefree(k) && !issquarefree(n-k));
%Y A282380 Cf. A013929, A071068.
%K A282380 nonn
%O A282380 1,16
%A A282380 _Altug Alkan_, Feb 13 2017