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.

A204823 Sum of divisors (A000203) of deficient numbers (A005100).

Original entry on oeis.org

1, 3, 4, 7, 6, 8, 15, 13, 18, 12, 14, 24, 24, 31, 18, 20, 32, 36, 24, 31, 42, 40, 30, 32, 63, 48, 54, 48, 38, 60, 56, 42, 44, 84, 78, 72, 48, 57, 93, 72, 98, 54, 72, 80, 90, 60, 62, 96, 104, 127, 84, 68, 126, 96, 72, 74, 114, 124, 140, 96, 80, 121, 126, 84, 108, 132
Offset: 1

Views

Author

Jaroslav Krizek, Jan 22 2012

Keywords

Comments

a(n) = A000203(A005100(n)) = A005100(n) + A205099(n).

Crossrefs

Cf. A204822 (sum of divisors of abundant numbers), A205099 (sum of proper divisors of deficient numbers).

Programs

  • Mathematica
    sddn[n_]:=Module[{s=DivisorSigma[1,n]},If[s<2n,s,0]]; DeleteCases[ sddn/@ Range[ 100],0] (* Harvey P. Dale, Jan 02 2015 *)
  • PARI
    for(n=1,300,s=sigma(n);if(s<2*n,print1(s", "))) \\ Charles R Greathouse IV, Feb 19 2013

Formula

a(n) < 8n/3. - Charles R Greathouse IV, Feb 19 2013

A205098 Sum of proper divisors (A001065) of abundant numbers (A005101).

Original entry on oeis.org

16, 21, 22, 36, 42, 55, 50, 54, 76, 66, 64, 108, 78, 74, 123, 90, 106, 140, 92, 144, 156, 117, 114, 106, 172, 136, 126, 240, 186, 204, 150, 196, 259, 222, 236, 218, 201, 312, 186, 196, 366, 198, 316, 203, 270, 265, 300, 226, 366, 384, 284, 234, 280, 332, 312
Offset: 1

Views

Author

Jaroslav Krizek, Jan 22 2012

Keywords

Crossrefs

Cf. A205099 (sum of proper divisors of deficient numbers), A204822 (sum of divisors of abundant numbers), A001065, A005101.

Programs

  • Mathematica
    f[n_] := Module[{s = DivisorSigma[1, n] - n}, If[s > n, s, Nothing]]; Array[f, 250] (* Amiram Eldar, Mar 11 2024 *)

Formula

a(n) = A001065(A005101(n)) = A204822(n) - A005101(n).

A224907 Numbers n such that the sum of reciprocals of even divisors of n > 1.

Original entry on oeis.org

24, 36, 40, 48, 60, 72, 80, 84, 96, 108, 112, 120, 132, 140, 144, 156, 160, 168, 176, 180, 192, 200, 204, 208, 216, 224, 228, 240, 252, 264, 276, 280, 288, 300, 312, 320, 324, 336, 348, 352, 360, 372, 384, 392, 396, 400, 408, 416, 420, 432, 440, 444, 448, 456
Offset: 1

Views

Author

Michel Lagneau, Jul 25 2013

Keywords

Comments

Numbers n such that the sum of reciprocals of even divisors of n equals m/n for some integer m where the fraction m/n > 1. The corresponding numerators m are given by the sequence A204822(n) = {28, 39, 42, 60, 72, 91, 90, 96,...} (Sum of divisors (A000203) of abundant numbers (A005101)).

Examples

			40 is in the sequence because the even divisors of 40 are 2, 4, 8, 10, 20, 40 and 1/2 + 1/4 + 1/8 + 1/10 + 1/20 + 1/40 = 42/40 = A204823(3)/a(3), and 42/40 > 1.
		

Crossrefs

Programs

  • Maple
    ***program 1 where sum of reciprocals even divisors > 1***
    with(numtheory):for n from 2 by 2 to 500 do:x:=divisors(n):n1:=nops(x): s:=0:for i from 1 to n1 do: if irem(x[i],2)=0 then s:=s+1/x[i]:else fi:od: if s>1 then printf(`%d, `,n):else fi:od:
    ***program 2 where sum of reciprocals even divisors = m/n***
    with(numtheory):for n from 2 to 500 do:x:=divisors(n):n1:=nops(x): s:=0:for i from 1 to n1 do: if irem(x[i],2)=0 then s:=s+1/x[i]:else fi:od: for m from n+1 to 2*n do: if s=m/n then printf(`%d, `,n):else fi:od:od:
  • Mathematica
    Select[Range[500],Total[1/Select[Divisors[#],EvenQ]]>1&] (* Harvey P. Dale, Aug 15 2015 *)

Formula

a(n) = 2*A005101(n).
Showing 1-3 of 3 results.