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 A114094 #8 Sep 29 2023 12:31:45 %S A114094 1,1,2,2,3,4,5,5,8,8,10,13,14,15,21,22,24,32,31,35,46,49,49,66,60,70, %T A114094 91,95,90,121,106,126,168,167,153,204,175,210,294,273,245,323,274,330, %U A114094 492,422,374,487,411,495 %N A114094 Number of partitions of n into parts that are distinct mod 6. %H A114094 Fausto A. C. Cariboni, <a href="/A114094/b114094.txt">Table of n, a(n) for n = 1..1000</a> %e A114094 a(7)=5 because there are 5 such partitions of 7: {7}, {1,6}, {2,5}, {3,4}, {4,2,1}. %t A114094 << DiscreteMath`Combinatorica`; np[n_]:= Length@Select[Mod[ #,6]& /@ Partitions[n],(Length@# != Length@Union@#)&]; lst = Array[np,50] %K A114094 nonn %O A114094 1,3 %A A114094 _Giovanni Resta_, Feb 06 2006