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 A243224 #13 Feb 14 2021 20:41:45 %S A243224 0,0,1,0,0,1,0,0,1,1,0,0,0,1,1,0,0,1,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0, %T A243224 1,1,0,0,1,0,0,1,0,1,2,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0,0,2,0,1,1,0,1, %U A243224 0,0,0,1,0,0,1,1,1,1,0,0,1,0,0,1,1,0,0 %N A243224 Number of odd divisors d of n such that d > 1 and d(1+d/3)/2 <= n <= 3d(d-1)/2. %C A243224 This sequence is useful for computing A243223, the number of partitions of n into summands in arithmetic progression with common difference 3. The definition follows Nyblom and Evans 2003 (see LINK) with slight modifications and corrections. %H A243224 Jean-Christophe Hervé, <a href="/A243224/b243224.txt">Table of n, a(n) for n = 1..10000</a> %H A243224 M. A. Nyblom and C. Evans, <a href="http://ajc.maths.uq.edu.au/pdf/28/ajc_v28_p149.pdf">On the enumeration of partitions with summands in arithmetic progression</a>, Australasian Journal of Combinatorics, Vol. 28 (2003), pp. 149-159. %e A243224 a(6) = 1 because 3, the unique odd divisor > 1 of 6 satisfies 3(1+3/3)/2 <= 6 <= 3.3(3-1)/2. %o A243224 (PARI) a(n) = sumdiv(n, d, (d > 1) && (d % 2) && (d*(1+d/3)/2 <= n) && (n <= 3*d*(d-1)/2)); \\ _Michel Marcus_, Jun 02 2014 %Y A243224 Cf. A243223. %K A243224 nonn %O A243224 1,45 %A A243224 _Jean-Christophe Hervé_, Jun 01 2014