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 21-25 of 25 results.

A160133 Values k such that A001065(x)= k has more than one solution.

Original entry on oeis.org

1, 6, 8, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 25, 27, 29, 31, 32, 33, 35, 37, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 55, 57, 59, 61, 62, 63, 64, 65, 67, 69, 71, 73, 74, 75, 76, 77, 79, 81, 83, 85, 87, 89, 90, 91, 92, 93, 95, 97, 99, 100, 101, 103, 104, 105
Offset: 1

Views

Author

Jaroslav Krizek, May 02 2009

Keywords

Comments

Numbers k with A048138(k) >= 2. Numbers k which occur in A001065 more than once. Number 1 and numbers k = A160095(n) with A160095(n+1) - A160095(n) = 0.

Examples

			a(3)=8 as the multiplicity of the value 8 is 2: 8 = A001065(10) = A001065(49).
		

Crossrefs

Programs

  • PARI
    {z=105; v=vector(z); for(n=1, z^2, a=sigma(n)-n; if(01, print1(j, ",")))} \\ Klaus Brockhaus, May 26 2009

Extensions

More terms from Klaus Brockhaus, May 26 2009

A238382 Untouchable amicable numbers: amicable pairs which cannot be reached by any aliquot sequence starting from a number that does not belong to this pair.

Original entry on oeis.org

356408, 399592, 643336, 652664, 5232010, 5799542, 9363584, 9437056, 10596368, 11199112, 15363832, 16517768, 31818952, 32205616, 34352624, 34860248, 46237730, 48641584, 48852176, 49215166, 52695376, 55349570, 56208368, 61319902, 91996816, 93259184
Offset: 1

Views

Author

Jean Luc Garambois, Mar 03 2014

Keywords

Comments

A pair of numbers x and y is called an untouchable amicable pair if x and y are amicable numbers (see A063990) and if x and y each have only one aliquot antecedent: the other number of their pair. In other words, they are amicable pairs which no aliquot sequence starting on a number that does not belong to this pair can reach.
The sequence lists the untouchable amicable numbers in increasing order. Note that the pairs x, y are not always adjacent to each other in the list.
Numbers that are the smaller number of their untouchable amicable pair are 356408, 643336, 5232010, 9363584, 10596368, 15363832, 31818952, 32205616, ... (subsequence of A002025).
The remaining numbers in the sequence are the larger number of their untouchable amicable pair: 399592, 652664, 5799542, 9437056, 11199112, 16517768, 34860248, 34352624, ... (subsequence of A002046).
We can call those pairs "untouchable amicable pairs", "isolated amicable pairs", or "isolated amicable cycles with two links" ... .

Crossrefs

A252234 Numbers n such that there exists an m so that squarefree kernel of n = squarefree kernel of m, and n is the sum of the proper divisors of m (m may equal n).

Original entry on oeis.org

6, 28, 36, 50, 240, 312, 384, 450, 496, 810, 1008, 1344, 4256, 4536, 8128, 10800, 11700, 14112, 15288, 19656, 23040, 49686, 90720, 95040, 98280, 98553, 124848, 129024, 153760, 249018, 256932, 260100, 378225, 404586, 454860, 532224, 561834, 700245, 714240
Offset: 1

Views

Author

Naohiro Nomoto, Dec 15 2014

Keywords

Comments

Since m=n is allowed, perfect numbers (A000396) are terms of this sequence. - Michel Marcus, Jan 02 2015
m: 6, 24, 28, 40, 120, 216, 234, 270, 360, 496, 588, 672, 2016, ..., . - Robert G. Wilson v, Feb 28 2015
Odd members are 98553, 378225, 700245, ..., . - Robert G. Wilson v, Feb 28 2015

Examples

			For n = 36, m = 24, 36 is the sum of the proper divisors of 24, and rad(36) = rad(24) = 6.
		

Crossrefs

Cf. A001065 (sum of proper divisors of n), A007947 (the squarefree kernel of n).

Programs

  • Mathematica
    rad[n_] := Times @@ (First@ # & /@ FactorInteger@ n); f[n_] := Block[{sd = DivisorSigma[1, n] - n}, If[ rad[n] == rad[sd], sd, 0]]; k = 1; lst = {}; While[k < 1000001, a = f@ k; If[a > 0, AppendTo[lst, a]]; k++]; Sort@ lst (* Robert G. Wilson v, Feb 28 2015 *)

A253302 Smallest integer m such that gcd{x | sum of proper divisors of x is m} is equal to n, when there are at least two such x's.

Original entry on oeis.org

1, 16, 300, 136, 50316, 186, 97748, 1352, 72318, 1340, 1652, 1356
Offset: 1

Views

Author

Michel Marcus, Dec 30 2014

Keywords

Comments

Only integers m that satisfy A048138(m) > 1 are considered here.
Other known terms with odd indices: a(25)=39926, a(49)=46850.
For terms with even indices see A253303.

Examples

			For every prime p the sum of proper divisors of p is 1, and the GCD of the primes is 1, so a(1) = 1.
		

Crossrefs

Cf. A001065 (sum of proper divisors), A048138, A152454, A253303.

Programs

  • PARI
    build(nb) = {vs = vector(nb); nc = nb^2; forcomposite(n=2, nc, val = sigma(n)-n; if (val <= nb, if (vs[val] == 0, vs[val] = -n, vs[val] = gcd(vs[val], n)););); vs[1] = 1; vs;}
    lista() = {vd = build(100000); vmax = 20; vr = vector(vmax); for (ig=1, vmax, for (i=1, #vd, w = vd[i]; if (w ==ig, vr[ig] = i; break;););); for (i=1, #vr, if (vr[i] == 0, break, print1(vr[i], ", ")));}

Extensions

a(1)=1 suggested by Robert Israel, Jan 01 2015

A252056 a(n) is the least m such that m = A001065(j) = A001065(k) where j != k, A000005(j) = A000005(k) = n; or 0 if no such m exists.

Original entry on oeis.org

0, 1, 0, 13, 0, 73, 0, 106, 9064940, 4001, 0, 396, 0
Offset: 1

Views

Author

Naohiro Nomoto, Dec 13 2014

Keywords

Comments

When n>2 and A001055(n)=1, then a(n)=0; because in that case, only a prime^n has n divisors, and then it is not possible to get twice the same value for sigma(x)-x. This happens for n=3, 5, 7, 11, 13, 17, 19, 23, 29, ... - Michel Marcus, Dec 16 2014
Note that for n=8, j and k do not have the same prime signature. - Michel Marcus, Dec 17 2014

Examples

			For n=2, all primes have 2 divisors and satisfy sigma(x)-x=1, so a(2) = 1.
For n=4, 27 and 35 have 4 divisors and the sum of their proper divisors is 13 for both (1+3+9 and 1+5+7).
For n=6, 98 and 175 have 6 divisors and the sum of their proper divisors is 73 for both (1+2+7+14+49 and 1+5+7+25+35).
For n=8, 104 and 110 have 8 divisors and the sum of their proper divisors is 106 for both (1+2+4+8+13+26+52 and 1+2+5+10+11+22+55).
For n=9, 163^2*167^2 and 61^2*353^2 have 9 divisors and the sum of their proper divisors is 9064940 for both.
For n=10, 7203 and 7857 have 10 divisors and the sum of their proper divisors is 4001 for both.
For n=12, 276 and 306 have 12 divisors and the sum of their proper divisors is 396 for both.
		

Crossrefs

Cf. A000005 (number of divisors of n), A001065 (sum of proper divisors of n).

Extensions

a(9)-a(13) from Michel Marcus, Dec 16 2014
Previous Showing 21-25 of 25 results.