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 A226749 #6 Sep 08 2022 12:55:38 %S A226749 1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,4,3,3,4,4,4,4,5,5,5,6,7,6,6, %T A226749 6,7,7,8,8,9,9,9,9,9,9,11,11,11,12,13,13,12,12,13,15,15,16,17,17,16, %U A226749 18,18,19,19,21,21,23,24,25,24,24,24,26,26,29,32 %N A226749 Number of partitions of n into distinct Platonic numbers, cf. A053012. %H A226749 Reinhard Zumkeller, <a href="/A226749/b226749.txt">Table of n, a(n) for n = 0..1000</a> %e A226749 First Platonic numbers: 1, 4, 6, 8, 10, 12, 19, 20, 27, ... %e A226749 a(10) = #{10, 6+4} = 2; %e A226749 a(11) = #{10+1, 6+4+1} = 2; %e A226749 a(12) = #{12, 8+4} = 2; %e A226749 a(13) = #{12+1, 8+4+1} = 2; %e A226749 a(14) = #{10+4, 8+6} = 2; %e A226749 a(15) = #{10+4+1, 8+6+1} = 2; %e A226749 a(16) = #{12+4, 10+6} = 2; %e A226749 a(17) = #{12+4+1, 10+6+1} = 2; %e A226749 a(18) = #{12+6, 10+8, 8+6+4} = 3; %e A226749 a(19) = #{19, 12+6+1, 10+8+1, 8+6+4+1} = 4; %e A226749 a(20) = #{20, 19+1, 12+8, 10+6+4} = 4. %o A226749 (Haskell) %o A226749 a226749 = p a053012_list where %o A226749 p _ 0 = 1 %o A226749 p (k:ks) m = if m < k then 0 else p ks (m - k) + p ks m %Y A226749 Cf. A053012, A226748. %K A226749 nonn %O A226749 0,11 %A A226749 _Reinhard Zumkeller_, Jun 17 2013