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 41-44 of 44 results.

A109750 Admirable triangular numbers.

Original entry on oeis.org

66, 78, 120, 4095, 491536, 523776
Offset: 1

Views

Author

Jason Earls, Aug 11 2005

Keywords

Comments

No further term between 523776 and 4050045000. - R. J. Mathar, Feb 11 2008
a(7) > 10^20, if it exists. - Amiram Eldar, Aug 05 2023

Examples

			a(1) = 66 because 11*(11+1)/2 = 66 and 1+2+3+11+22+33-6 = 66.
		

Crossrefs

Programs

  • Mathematica
    admQ[n_] := (ab = DivisorSigma[1, n] - 2 n) > 0 && EvenQ[ab] && ab/2 < n && Divisible[n, ab/2]; Select[Accumulate[Range[1024]], admQ] (* Amiram Eldar, Aug 05 2023 *)

Formula

A111592 INTERSECT A000217. - R. J. Mathar, Feb 11 2008

A109766 Admirable numbers such that the subtracted divisor is prime.

Original entry on oeis.org

12, 40, 70, 88, 1888, 4030, 5830, 8925, 32128, 32445, 78975, 442365, 521728, 1848964, 8378368, 34359083008, 66072609790
Offset: 1

Views

Author

Jason Earls, Aug 13 2005

Keywords

Comments

549753192448 is also a term. - Donovan Johnson, Sep 08 2012

Examples

			a(2) = 40 because 1+2+4+8+10+20-5 = 40 and the subtracted divisor is prime.
		

Crossrefs

Cf. A111592.

Programs

  • Mathematica
    q[n_] := (ab = DivisorSigma[1, n] - 2 n) > 0 && EvenQ[ab] && ab/2 < n && Divisible[n, ab/2] && PrimeQ[ab/2]; Select[Range[2*10^6], q] (* Amiram Eldar, Aug 05 2023 *)

Extensions

a(15) from Donovan Johnson, Sep 27 2008
a(16)-a(17) from Donovan Johnson, Sep 08 2012

A110019 Numbers n such that n and its 10's complement are both admirable numbers, i.e., n and 10^k - n where k is the number of digits in n are admirable.

Original entry on oeis.org

12, 30, 70, 88, 97998, 98048, 99988, 111644, 130304, 869696, 888356, 9866958, 9908612, 38713866, 43672638, 56327362, 61286134, 97845666, 99916796, 3276615836, 3611536474, 6388463526, 6723384164, 9938713866, 9956658572
Offset: 1

Views

Author

Jason Earls, Sep 03 2005

Keywords

Crossrefs

Cf. A111592.

Extensions

More terms from Olaf Voß, Feb 20 2008

A364726 Admirable numbers with more divisors than any smaller admirable number.

Original entry on oeis.org

12, 24, 84, 120, 672, 24384, 43065, 78975, 81081, 261261, 523776, 9124731, 13398021, 69087249, 91963648, 459818240, 39142675143, 51001180160
Offset: 1

Views

Author

Amiram Eldar, Aug 05 2023

Keywords

Comments

The corresponding numbers of divisors are 6, 8, 12, 16, 24, 28, 32, 36, 40, 48, 80, 90, 96, 120, 144, 288, 360, 480, ... .
If there are infinitely many even perfect numbers (A000396), then this sequence is infinite, because if p is a Mersenne prime exponent (A000043) and q is an odd prime that does not divide 2^p-1, then 2^(p-1)*(2^p-1)*q is an admirable number with 4*p divisors (see A165772).
a(19) > 10^11.

Crossrefs

Programs

  • Mathematica
    admQ[n_] := (ab = DivisorSigma[1, n] - 2 n) > 0 && EvenQ[ab] && ab/2 < n && Divisible[n, ab/2];
    seq[kmax_] := Module[{s = {}, dm = 0, d1}, Do[d1 = DivisorSigma[0, k]; If[d1 > dm && admQ[k], dm = d1; AppendTo[s, k]], {k, 1, kmax}]; s]; seq[10^6]
  • PARI
    isadm(n) = {my(ab=sigma(n)-2*n); ab>0 && ab%2 == 0 && ab/2 < n && n%(ab/2) == 0;}
    lista(kmax) = {my(dm = 0, d1); for(k = 1, kmax, d1 = numdiv(k); if(d1 > dm && isadm(k), dm = d1; print1(k,", ")));}
Previous Showing 41-44 of 44 results.