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-2 of 2 results.

A328930 Numbers N such that A328919(N) < A051903(N); numbers N such that {sigma_k(N) mod N: k >= m} is purely periodic with some m < e, where e is the maximal exponent in prime factorization of N.

Original entry on oeis.org

12, 18, 20, 24, 28, 40, 44, 45, 48, 52, 56, 60, 68, 76, 80, 84, 88, 90, 92, 96, 99, 104, 108, 112, 116, 120, 124, 126, 132, 136, 140, 148, 152, 153, 156, 160, 162, 164, 168, 172, 176, 180, 184, 188, 192, 198, 204, 207, 208, 212, 220, 224, 228, 232, 234, 236, 240, 244, 248
Offset: 1

Views

Author

Jianing Song, Oct 31 2019

Keywords

Comments

It is easy to see that {sigma_k(N) mod N: k >= A051903(N)} is purely periodic.
All terms are nonsquarefree: if N is squarefree and N is here, then A328919(N) < A051903(N) = 1, so A328919(N) = 0. By the property mentioned in A328919, a necessary condition is that for every prime p dividing N, write N = p*s, we have p divides d(s), d = A000005. But d(s) is a power of 2, so N = 2, and 2 is not here.
Although it seems that for most N we have A328919(N) = A051903(N), this sequence is infinite. See A328934 for more information.

Examples

			A328919(12) = 0, while A051903(12) = 2, so 12 is a term.
A328919(24) = 1, while A051903(24) = 3, so 24 is a term.
If N = p^e for prime p, then A328919(p^e) = A051903(p^e) = e. So this sequence and A000961 have empty intersection.
		

Crossrefs

Programs

A328934 Nonsquarefree N such that A328919(N) = 1; nonsquarefree N such that {sigma_t(N) mod N: t >= 1} is purely periodic, while {sigma_t(N) mod N: t >= 0} is not.

Original entry on oeis.org

18, 20, 24, 28, 44, 45, 52, 56, 60, 68, 76, 84, 88, 90, 92, 99, 116, 120, 124, 126, 132, 140, 148, 152, 153, 156, 164, 168, 172, 180, 184, 188, 198, 204, 207, 212, 220, 228, 234, 236, 240, 244, 248, 260, 261, 264, 268, 276, 280, 284, 292, 306, 308, 312, 315, 316, 332, 336
Offset: 1

Views

Author

Jianing Song, Oct 31 2019

Keywords

Comments

If N is squarefree then A328919(N) = 1, but the converse is not true. While it is conjectured that 12 is the only N such that 0 = A328919(N) < A051903(N), there are infinitely many N such that 1 = A328919(N) < A051903(N).
Let p_1, p_2, ..., p_(k-1) be k-1 distinct odd primes, k >= 3. Let N = 2^k*p_1*p_2*...*p_(k-1), then N is here. It is easy to see that {sigma_t(N) mod 2^k: t >= k} and {sigma_t(N) mod p_i: t >= 1} are both purely periodic.
To show this, it is sufficient to show that:
(a) sigma_t(N) == sigma_(t+2^(k-2))(N) (mod 2^k) for all 1 <= t <= k-1, so {sigma_t(N) mod 2^k: t >= 1} is purely periodic;
Proof. Write N = 2^k*M, then sigma_(t+2^(k-2))(N) - sigma_t(N) = Sum_{d|M} (d^(t+2^(k-2)) + (2d)^(t+2^(k-2)) + ... + (2^k*t)^(t+2^(k-2)) - d^t - (2d)^t - ... - (2^k*d)^t). This is divisible by 2^k if and only if 2^k | Sum_{d|M} (2d)^t, or 2^(k-t) | sigma_t(M). This is obvious because sigma_t(p_i) is even, as sigma_t() is multiplicative, 2^(k-1) | sigma_t(M).
(b) there exists some i such that sigma_0(N) !== sigma_(p_i-1)(N) (mod p_i).
Proof. Write N = M*p_i, then sigma_(p_i-1)(N) - sigma_0(N) = Sum_{d|M} (d^(p_i-1) + (p_i*d)^(p_i-1) - d - 1) == -(Sum_{d|M} 1) = (k+1)*2^(k-1) (mod p_i). As max{p_1, p_2, ..., p_(k-1)} >= A000040(k) > k+1, there exists some prime p_i that does not divide p_i.
This shows that A051903(N) - A328919(N) is unbounded, and can take every natural number as its value for infinitely many times. It is conjectured that the smallest N such that A328919(N) = 1 and A051903(N) = k is N = 2^(k-1)*A002110(k-1), k >= 3.

Examples

			For t > 0, sigma_t(24) == 12 (mod 24) if t is odd, sigma_t(24) == 10 (mod 24) if t is even. Note that sigma_0(24) = 8, so A328919(24) = 1, so 24 is a term.
		

Crossrefs

Programs

  • PARI
    for(n=1, oo, if(A328919(n)==1 && !issquarefree(n), return(n))) \\ See A328919 for its program.
Showing 1-2 of 2 results.