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.

A334256 Numbers k such that H(k) = 2*k, where H(k) is the number of ordered factorizations of k (A074206).

Original entry on oeis.org

3072, 1310720, 469762048, 48378511622144, 14636698788954112, 1115414963960152064, 1254378597012249509888, 358899852698093036240896, 28472620903563746322679857152
Offset: 1

Views

Author

David A. Corneth and Amiram Eldar, Apr 20 2020

Keywords

Comments

If p is an odd prime then 2^(4*p - 2) * p is a term, hence this sequence is infinite.
Since A074206(k) depends only on the prime signature (A124010) of k, then each term is of the form A050324(k)/2 = A074206(A025487(k))/2.
Besides terms of the form 2^(4*p - 2) * p at least 79 terms not of this form are known. For example, 1115414963960152064 = 2^46 * 11^2 * 131 is a term not of this form. To ease the search, can we narrow the possible prime signatures of terms?

Examples

			3072 is a term since A074206(3072) = 6144 = 2 * 3072.
		

Crossrefs

Subsequence of A270308.

Programs

  • Mathematica
    h[1] = 1; h[n_] := h[n] = DivisorSum[n, h[#] &, # < n &]; Select[Range[1.5*10^6], h[#] == 2*# &]
  • PARI
    is(n) = A074206(n) == n<<1

A340155 Numbers k such that A008480(k) > k.

Original entry on oeis.org

326918592000, 435891456000, 653837184000, 871782912000, 980755776000, 1089728640000, 1307674368000, 1401079680000, 1508855040000, 1525620096000, 1569209241600, 1587890304000, 1634592960000, 1710035712000, 1852538688000, 1868106240000, 1961511552000, 2070484416000
Offset: 1

Views

Author

Amiram Eldar, Dec 29 2020

Keywords

Comments

a(1) is given in the paper by Montgomery and Tenenbaum (2017).
If k is a term then all the numbers below k with the same prime signature as k are also terms. In particular A046523(k) is a term.
1710035712000 is the least term which is not in A025487.
Are there any odd terms in this sequence? If there are, the least of them is a term of A147516 and has more than 90 prime divisors (counted with multiplicity).

Examples

			326918592000 is a term since A008480(326918592000) = 358500542400 > 326918592000.
		

Crossrefs

A385511 Numbers that are less than the number of their ordered factorizations into squarefree numbers greater than 1.

Original entry on oeis.org

2520, 5040, 7560, 10080, 10800, 12600, 15120, 20160, 21600, 22680, 23760, 25200, 27720, 30240, 32400, 35280, 37800, 43200, 45360, 47520, 50400, 52920, 55440, 60480, 64800, 65520, 70560, 71280, 75600, 79200, 83160, 86400, 88200, 90720, 95040, 98280, 100800, 105840
Offset: 1

Views

Author

Amiram Eldar, Jul 01 2025

Keywords

Comments

Numbers k such that A050328(k) > k.
If k is a term then all the smaller numbers with the same prime signature (A118914) as k are also terms.
The least term that is not divisible by 5 is a(112) = 399168.
The least term that is not divisible by 3 is 144848704000.
The least odd term is A147516(43302) = 16639855392913235373515625.

Crossrefs

Programs

  • Mathematica
    f[1] = 1; f[n_] := f[n] = DivisorSum[n, f[#] &, # < n && SquareFreeQ[n/#] &]; Select[Range[110000], f[#] > # &]
  • PARI
    f(n) = if(n == 1, 1, sumdiv(n, d, if((d k;
Showing 1-3 of 3 results.