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 A350773 #30 Jan 19 2022 22:38:44 %S A350773 18,26,27,28,53,73,2914913,5516281,6618241,9018353,10780553,18164161, %T A350773 20239913,45652313,51755761,62198633,81235441,91986833,158764313, %U A350773 175472641,191010953,197375753,215206201,322030801,322461713,362007353,513284401,668745001,757892513 %N A350773 Numbers k such that tau(k) + ... + tau(k+6) = 32, where tau is the number of divisors function A000005. %C A350773 It can be shown that if tau(k) + ... + tau(k+6) = 32, the septuple (tau(k), tau(k+1), tau(k+2), tau(k+3), tau(k+4), tau(k+5), tau(k+6)) must be one of the following, each of which might plausibly occur infinitely often: %C A350773 (2, 4, 4, 6, 4, 8, 4), which first occurs at k = 5516281, 18164161, 51755761, ... (A207825); %C A350773 (2, 8, 4, 6, 4, 4, 4), which first occurs at k = 2914913, 9018353, 20239913, ...; %C A350773 (4, 4, 4, 6, 4, 8, 2), which first occurs at k = 6618241, 81235441, 215206201, ...; %C A350773 (4, 8, 4, 6, 4, 4, 2), which first occurs at k = 10780553, 45652313, 62198633, ...; %C A350773 or one of the following, each of which occurs only once: %C A350773 (6, 2, 6, 4, 4, 2, 8), which occurs only at k = 18; %C A350773 (4, 4, 6, 2, 8, 2, 6), which occurs only at k = 26; %C A350773 (4, 6, 2, 8, 2, 6, 4), which occurs only at k = 27; %C A350773 (6, 2, 8, 2, 6, 4, 4), which occurs only at k = 28; %C A350773 (2, 8, 4, 8, 4, 4, 2), which occurs only at k = 53; %C A350773 (2, 4, 6, 6, 4, 8, 2), which occurs only at k = 73. %C A350773 The terms of the repeatedly occurring patterns form sequence A071369. %C A350773 Tau(k) + ... + tau(k+6) >= 32 for all sufficiently large k; the only numbers k for which tau(k) + ... + tau(k+6) < 32 are 1..17, 19..23, 25, 29, 31, 33, 37, and 41. %H A350773 Jon E. Schoenfield, <a href="/A350773/b350773.txt">Table of n, a(n) for n = 1..10000</a> %F A350773 { k : Sum_{j=0..6} tau(k+j) = 32 }. %e A350773 The table below lists each term k with a pattern (tau(k), ..., tau(k+6)) that appears only once (these appear at n = 1..6) as well as each term k that is the smallest one having a pattern that appears repeatedly for large k. (a(10)=9018353 is omitted from the table because it has the same pattern as a(7)=2914913.) %e A350773 Each of the repeatedly occurring patterns corresponds to one of the 4 possible orders in which the multipliers m=1..7 can appear among 7 consecutive integers of the form m*prime, and thus to a single residue of k modulo 2520; e.g., k=2914913 begins a run of 7 consecutive integers having the form (1*p, 6*q, 5*r, 4*s, 3*t, 2*u, 7*v), where p, q, r, s, t, u, and v are distinct primes > 7, and all such runs satisfy k == 1793 (mod 2520). %e A350773 For each of the patterns that does not occur repeatedly, one or more of the seven consecutive integers in k..k+6 has no prime factor > 7; each such integer appears in parentheses in the columns under "factorization". %e A350773 . %e A350773 . # divisors of factorization %e A350773 k+j for j = as m*(prime > 7) %e A350773 n a(n)=k 0 1 2 3 4 5 6 k k+1 k+2 k+3 k+4 k+5 k+6 k mod 2520 %e A350773 - -------- - - - - - - - --- --- --- --- --- --- --- ---------- %e A350773 1 18 6 2 6 4 4 2 8 (18) q (20)(21) 2t u (24) 18 %e A350773 2 26 4 4 6 2 8 2 6 2p (27)(28) s (30) u (32) 26 %e A350773 3 27 4 6 2 8 2 6 4 (27)(28) r (30) t (32) 3v 27 %e A350773 4 28 6 2 8 2 6 4 4 (28) q (30) s (32) 3u 2v 28 %e A350773 5 53 2 8 4 8 4 4 2 p (54) 5r (56) 3t 2u v 53 %e A350773 6 73 2 4 6 6 4 8 2 p 2q (75) 4s 7t 6u v 73 %e A350773 7 2914913 2 8 4 6 4 4 4 p 6q 5r 4s 3t 2u 7v 1793 %e A350773 8 5516281 2 4 4 6 4 8 4 p 2q 3r 4s 5t 6u 7v 1 %e A350773 9 6618241 4 4 4 6 4 8 2 7p 2q 3r 4s 5t 6u v 721 %e A350773 11 10780553 4 8 4 6 4 4 2 7p 6q 5r 4s 3t 2u v 2513 %t A350773 Position[Plus @@@ Partition[Array[DivisorSigma[0, #] &, 10^7], 7, 1], 32] // Flatten (* _Amiram Eldar_, Jan 16 2022 *) %o A350773 (Python) from sympy import divisor_count as tau %o A350773 taulist = [1, 2, 2, 3, 2, 4, 2] %o A350773 for k in range(2, 10000000): %o A350773 taulist.append(tau(k+6)) %o A350773 del taulist[0] %o A350773 if sum(taulist) == 32: print(k, end=", ") # _Karl-Heinz Hofmann_, Jan 15 2022 %Y A350773 Cf. A000005, A071369, A207825. %Y A350773 Numbers k such that Sum_{j=0..N-1} tau(k+j) = 2*Sum_{k=1..N} tau(k): A000040 (N=1), A350593 (N=2), A350675 (N=3), A350686 (N=4), A350699 (N=5), A350769 (N=6), (this sequence) (N=7), A350854 (N=8). %K A350773 nonn %O A350773 1,1 %A A350773 _Jon E. Schoenfield_, Jan 15 2022