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.

A286220 Number of partitions of n into distinct parts with an odd number of distinct prime divisors.

This page as a plain text file.
%I A286220 #10 Feb 16 2025 08:33:44
%S A286220 1,0,1,1,1,2,1,3,2,4,3,5,5,6,7,7,10,9,12,12,15,15,18,19,22,24,26,30,
%T A286220 32,36,40,43,49,52,58,63,69,76,81,91,96,108,114,127,135,148,159,173,
%U A286220 186,202,217,234,253,271,293,313,339,361,390,416,449,478,514,547,588,625,671,714,763,815,867
%N A286220 Number of partitions of n into distinct parts with an odd number of distinct prime divisors.
%H A286220 Amiram Eldar, <a href="/A286220/b286220.txt">Table of n, a(n) for n = 0..10000</a>
%H A286220 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/DistinctPrimeFactors.html">Distinct Prime Factors</a>
%H A286220 <a href="/index/Par#part">Index entries for related partition-counting sequences</a>
%F A286220 G.f.: Product_{k>=1} (1 + x^A030230(k)).
%e A286220 a(9) = 4 because we have [9], [7, 2], [5, 4] and [4, 3, 2].
%t A286220 nmax = 70; CoefficientList[Series[Product[1 + Boole[OddQ[PrimeNu[k]]] x^k, {k, 1, nmax}], {x, 0, nmax}], x]
%Y A286220 Cf. A030230, A285799, A286221.
%K A286220 nonn
%O A286220 0,6
%A A286220 _Ilya Gutkovskiy_, May 04 2017