cp's OEIS Frontend

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.

Showing 1-3 of 3 results.

A350773 Numbers k such that tau(k) + ... + tau(k+6) = 32, where tau is the number of divisors function A000005.

Original entry on oeis.org

18, 26, 27, 28, 53, 73, 2914913, 5516281, 6618241, 9018353, 10780553, 18164161, 20239913, 45652313, 51755761, 62198633, 81235441, 91986833, 158764313, 175472641, 191010953, 197375753, 215206201, 322030801, 322461713, 362007353, 513284401, 668745001, 757892513
Offset: 1

Views

Author

Jon E. Schoenfield, Jan 15 2022

Keywords

Comments

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:
(2, 4, 4, 6, 4, 8, 4), which first occurs at k = 5516281, 18164161, 51755761, ... (A207825);
(2, 8, 4, 6, 4, 4, 4), which first occurs at k = 2914913, 9018353, 20239913, ...;
(4, 4, 4, 6, 4, 8, 2), which first occurs at k = 6618241, 81235441, 215206201, ...;
(4, 8, 4, 6, 4, 4, 2), which first occurs at k = 10780553, 45652313, 62198633, ...;
or one of the following, each of which occurs only once:
(6, 2, 6, 4, 4, 2, 8), which occurs only at k = 18;
(4, 4, 6, 2, 8, 2, 6), which occurs only at k = 26;
(4, 6, 2, 8, 2, 6, 4), which occurs only at k = 27;
(6, 2, 8, 2, 6, 4, 4), which occurs only at k = 28;
(2, 8, 4, 8, 4, 4, 2), which occurs only at k = 53;
(2, 4, 6, 6, 4, 8, 2), which occurs only at k = 73.
The terms of the repeatedly occurring patterns form sequence A071369.
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.

Examples

			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.)
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).
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".
.
.                # divisors of          factorization
                  k+j for j =          as m*(prime > 7)
   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
   -  --------   - - - - - - -   --- --- --- --- --- --- ---   ----------
   1        18   6 2 6 4 4 2 8   (18)  q (20)(21) 2t   u (24)       18
   2        26   4 4 6 2 8 2 6    2p (27)(28)  s (30)  u (32)       26
   3        27   4 6 2 8 2 6 4   (27)(28)  r (30)  t (32) 3v        27
   4        28   6 2 8 2 6 4 4   (28)  q (30)  s (32) 3u  2v        28
   5        53   2 8 4 8 4 4 2     p (54) 5r (56) 3t  2u   v        53
   6        73   2 4 6 6 4 8 2     p  2q (75) 4s  7t  6u   v        73
   7   2914913   2 8 4 6 4 4 4     p  6q  5r  4s  3t  2u  7v      1793
   8   5516281   2 4 4 6 4 8 4     p  2q  3r  4s  5t  6u  7v         1
   9   6618241   4 4 4 6 4 8 2    7p  2q  3r  4s  5t  6u   v       721
  11  10780553   4 8 4 6 4 4 2    7p  6q  5r  4s  3t  2u   v      2513
		

Crossrefs

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).

Programs

  • Mathematica
    Position[Plus @@@ Partition[Array[DivisorSigma[0, #] &, 10^7], 7, 1], 32] // Flatten (* Amiram Eldar, Jan 16 2022 *)
  • Python
    from sympy import divisor_count as tau
    taulist = [1, 2, 2, 3, 2, 4, 2]
    for k in range(2, 10000000):
        taulist.append(tau(k+6))
        del taulist[0]
        if sum(taulist) == 32: print(k, end=", ") # Karl-Heinz Hofmann, Jan 15 2022

Formula

{ k : Sum_{j=0..6} tau(k+j) = 32 }.

A207825 Primes p such that (p+k)/(k+1) is a prime number for k = 1,...,6.

Original entry on oeis.org

5516281, 18164161, 51755761, 175472641, 322030801, 668745001, 859992841, 1163859481, 1566071641, 3662011081, 4285181881, 4609064881, 4630772161, 5329427041, 5601138481, 5934191761, 7123263841, 7321991041, 7391371681, 7969001041, 8735990761
Offset: 1

Views

Author

M. F. Hasler, Feb 28 2012

Keywords

Comments

The subsequence of p in A208455 such that (p+6)/7 is a prime.
Also, the subsequence of terms of A071369 which end in the digit "1".
All terms are of the form 2520m+1. The m-values are listed in A208549.

Programs

  • PARI
    {my(p=1); until(, isprime(p+=2520) || next; for(j=2, 7, isprime(p\j+1)||next(2)); print1(p", "))}

Formula

a(n) = A208549(n)*2520 + 1.

Extensions

a(20) and a(21) added by Robert C. Lyons, Nov 16 2024.

A208549 Numbers m such that 2520*m/k + 1 is a prime for k = 1,...,7.

Original entry on oeis.org

2189, 7208, 20538, 69632, 127790, 265375, 341267, 461849, 621457, 1453179, 1700469, 1828994, 1837608, 2114852, 2222674, 2354838, 2826692, 2905552, 2933084, 3162302, 3466663, 3972552, 3996543, 4535984, 5382039, 6192528, 6392223
Offset: 1

Views

Author

M. F. Hasler, Feb 28 2012

Keywords

Comments

Equivalently, 7!*m/2+k equals k times a prime, for k=1,...,7. The primes 2520m+1 are listed in A207825, and are also the terms of the sequence A071369 which end in the digit "1".

Programs

  • PARI
    {my(p=1); until(, isprime(p+=2520) || next; for(j=2,7, isprime(p\j+1)||next(2)); print1(p\2520", "))}

Formula

A208549(n) = (A207825(n)-1)/2520.
Showing 1-3 of 3 results.