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.

A340624 Numbers k such that A340388(k) > A018782(k).

Original entry on oeis.org

16, 32, 64, 128, 256, 512, 768, 1024, 1536, 2048, 2304, 3072, 4096, 4608, 6144, 8192, 9216, 12288, 16384, 18432, 24576, 32768, 36864, 49152, 65536, 73728, 98304, 110592, 131072, 147456, 165888, 196608, 221184, 248832, 262144, 294912, 331776, 373248, 393216, 442368
Offset: 1

Views

Author

Jianing Song, Apr 25 2021

Keywords

Comments

Numbers k such that A340388(k) is not the smallest number whose prime factors are all congruent to 1 modulo 4 and with exactly k divisors.
Despite being an analog of A072066, this sequence seems to be considerably sparser than A072066. What's the reason for that?
All powers of 2 that are greater than or equal to 16 are here. All numbers of the form 3 * 2^e with e >= 8 are here.
All powers of 3 that are greater than or equal to 3^15 = 14348907 are here. For example, we have A340388(3^15) = (5 * 13 * 17 * 29 * ... * 113 * 137)^2, while a(3^15) <= (5^4 * 13 * 17 * 29 * .. * 113)^2, so 3^15 is a term. Apparently 3^15 is the smallest odd term in this sequence.
Similarly, let q be a prime, then all powers of q that are greater than or equal to q^(N+1) are here, where N is the number of primes congruent to 1 modulo 4 below 5^q. It seems that q^(N+1) is the smallest q-rough term in this sequence.

Examples

			16 is a term since A340388(16) = 5 * 13 * 17 * 29 > A018782(16) = 5^3 * 13 * 17.
		

Crossrefs

Programs

A355919 Let n = p_1*p_2*...*p_k be the prime factorization of n, with the primes sorted in descending order; let b(n) = 7^(p_1 - 1)*13^(p_2 - 1)*19^(p_3 - 1)*...*A002476(k)^(p_k - 1). Sequence lists m such that b(m) > A343771(m).

Original entry on oeis.org

128, 256, 512, 1024, 2048, 3072, 4096, 6144, 8192, 12288, 16384, 24576, 32768, 49152, 65536, 73728, 98304, 131072, 147456, 196608, 262144, 294912
Offset: 1

Views

Author

Jianing Song, Jul 20 2022

Keywords

Comments

{b(n)} is an analog of A037019 and of A340388: all prime factors of b(n) are all congruent to 1 modulo 6 and b(n) has exactly n divisors, so A002324(b(n)) = n. By definition we have A343771(n) <= b(n), and it seems that the equality holds for most n. This sequence lists the exceptions.
Since {b(n)} agrees with A343771(n) for most n, it cannot have its own entry.
Let q be a prime, then q^e is here if and only if e >= N+1, where N is the number of primes congruent to 1 modulo 6 below 7^q (N = 6, 32, 958, ... for q = 2, 3, 5, ...).
Proof: p_1 < p_2 < ... be the primes congruent to 1 modulo 6. Suppose that A343771(q^e) = (p_1)^(q^(m_1)-1) * (p_2)^(q^(m_2)-1) * ... * (p_r)^(q^(m_r)-1) with r <= e, m_1 >= m_2 >= ... >= m_r. If m_1 >= 2, then r < e, so we can substitute (p_1)^(q^(m_1)-1) with (p_1)^(q^(m_1-1)-1) * (p_{r+1})^(q-1), which a smaller number with exactly q^e divisors, a contradiction. So we have m_1 = 1, namely A343771(q^e) = b(q^e). On the other hand, if e >= N+1, then A343771(q^e) <= (p_1)^(q^2-1) * (p_2)^(q-1) * ... * (p_{e-1})^(q-1) < b(q^e).
It seems that q^(N+1) is the smallest q-rough term in this sequence.

Examples

			128 is a term since b(128) = 7 * 13 * 19 * 31 * 37 * 43 * 61 > A343771(128) = 7^3 * 13 * 19 * 31 * 37 * 43.
		

Crossrefs

Programs

  • PARI
    b(n) = my(f=factor(n), w=omega(n), p=1, product=1); forstep(i=w, 1, -1, for(j=1, f[i, 2], p=nextprime(p+1); while(!(p%6==1), p=nextprime(p+1)); product *= p^(f[i, 1]-1))); product
    isA355919(n) = (b(n) > A343771(n)) \\ See A343771 for its program

Extensions

a(20)-a(22) from Jinyuan Wang, Aug 10 2022
Showing 1-2 of 2 results.