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 A331371 #15 Apr 04 2023 07:43:39 %S A331371 224,440,1224,2024,3968,5624,11024,18224,35720,38024,50624,53360, %T A331371 65024,74528,81224,140624,148224,159200,164024,184040,189224,194480, %U A331371 207024,216224,233288,245024,314720,354024,370880,378224,416024,423800,442224,455624,497024,511224 %N A331371 Numbers k such that k and k+1 are both half-Zumkeller numbers (A246198). %H A331371 Amiram Eldar, <a href="/A331371/b331371.txt">Table of n, a(n) for n = 1..10000</a> %e A331371 224 is a term since both 224 and 225 are half-Zumkeller numbers: the proper divisors of 224 are {1, 2, 4, 7, 8, 14, 16, 28, 32, 56, 112} and 1 + 2 + 4 + 7 + 8 + 14 + 16 + 32 + 56 = 28 + 112, and the proper divisors of 225 are {1, 3, 5, 9, 15, 25, 45, 75} and 1 + 3 + 15 + 25 + 45 = 5 + 9 + 75. %t A331371 hzQ[n_] := Module[{d = Most @ Divisors[n], sum, x}, sum = Plus @@ d; EvenQ[sum] && CoefficientList[Product[1 + x^i, {i, d}], x][[1 + sum/2]] > 0]; hzq1 = False; s = {}; Do[hzq2 = hzQ[n]; If[hzq1 && hzq2, AppendTo[s, n - 1]]; hzq1 = hzq2, {n, 2, 6000}]; s %Y A331371 Cf. A246198, A246199, A328327. %K A331371 nonn %O A331371 1,1 %A A331371 _Amiram Eldar_, May 03 2020