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.

Previous Showing 11-12 of 12 results.

A264155 a(n) is the smallest integer m such that n is the least exponent k satisfying sigma(m)^k divides m.

Original entry on oeis.org

1, 24, 40, 384, 486, 6144, 640, 18688, 39366, 91136, 10240, 23482368, 958464, 52612659, 163840, 375717888, 9568256, 1502871552, 2621440, 353370112, 186646528
Offset: 1

Views

Author

Michel Marcus, Nov 06 2015

Keywords

Comments

Conjecture: for n > 1, a(n) is of the form 2^n * m generally, sometimes of the form 3^n * m, and sometimes of the form 2^(n-1) * m, depending on sigma(m). Upper bounds are mostly of the form 2^n * m for odd m. For example, a(27) <= 2^27 * 5. - David A. Corneth, Feb 14 2019

Crossrefs

Cf. A000203 (sigma), A007947 (rad), A175200, A264154.

Programs

  • PARI
    fk(s, m) = {my(j = 1); while(denominator(s^j/m) != 1, j++); j;}
    rad(n) = factorback(factorint(n)[, 1]);
    a(n) = {my(k = 1, ok = 0, sk); while (!ok, sk = sigma(k); if ((denominator(sk/rad(k)) == 1) && (fk(sk, k) == n), ok = 1, k++; ); ); k; } \\ corrected by Michel Marcus, Feb 14 2019

A274205 Numbers such that the sum of divisors is twice the sum of the exponential divisors.

Original entry on oeis.org

6, 24, 54, 216, 1638, 6552, 14256, 55860, 80262, 276822, 321048, 502740, 1107288, 1396500, 1724976, 12568500, 13564278, 20165460, 54257112, 168836850, 181489140, 504136500, 675347400, 4537228500, 28533427650, 60950102850, 114133710600, 162252212850, 243800411400, 649008851400, 734916514878
Offset: 1

Views

Author

Paolo P. Lava, Jun 13 2016

Keywords

Comments

All terms appear to be multiples of 6.
a(32) > 10^12. If p*r is a term, where p is prime and r is not divisible by p, then p^3*r is also a term. - Giovanni Resta, Jun 15 2016

Examples

			Divisors of 6 are 1, 2, 3 and 6 which sum to 12. The only exponential divisor is 6. Finally 12 / 6 = 2.
Divisors of 24 are 1, 2, 3, 4, 6, 8, 12, 24 which sum to 60. Exponential divisors are 6, 24 and their sum is 30. Finally 60 / 30 = 2.
		

Crossrefs

Programs

  • Maple
    with(numtheory): P:=proc(q) local a,b,c,d,j,k,n,ok;
    for n from 2 to q do a:=ifactors(n)[2]; b:=sort([op(divisors(n))]); c:=0;
    for k from 2 to nops(b) do d:=ifactors(b[k])[2]; if nops(d)=nops(a) then
    ok:=1; for j from 1 to nops(d) do if not type(a[j][2]/d[j][2],integer) then ok:=0; break; fi; od;
    if ok=1 then c:=c+b[k]; fi;  fi; od; if sigma(n)=2*c  then print(n); fi; od; end: P(10^9);
  • Mathematica
    Select[Range[10^6], 2 Times @@ Map[Sum[First[#]^d, {d, Divisors@ Last@ #}] &, FactorInteger@ #] == DivisorSigma[1, #] &] (* Michael De Vlieger, Jun 16 2016 *)

Extensions

a(16)-a(31) from Giovanni Resta, Jun 15 2016
Previous Showing 11-12 of 12 results.