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-2 of 2 results.

A175067 a(n) is the sum of perfect divisors of n, where a perfect divisor of n is a divisor d such that d^k = n for some k >= 1.

Original entry on oeis.org

1, 2, 3, 6, 5, 6, 7, 10, 12, 10, 11, 12, 13, 14, 15, 22, 17, 18, 19, 20, 21, 22, 23, 24, 30, 26, 30, 28, 29, 30, 31, 34, 33, 34, 35, 42, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 56, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 78, 65, 66, 67, 68, 69, 70, 71, 72
Offset: 1

Views

Author

Jaroslav Krizek, Jan 23 2010

Keywords

Comments

a(n) > n for perfect powers n = A001597(m) for m > 2.

Examples

			For n = 8: a(8) = 10; there are two perfect divisors of 8: 2 and 8; their sum is 10.
		

Crossrefs

Programs

  • Maple
    A175067:= proc(n) local a, d, k; if n=1 then return 1 end if; a:=0; for d in numtheory[divisors](n) minus {1} do for k do if d^k=n then a:= a+d end if; if n <= d^k then break; end if; end do; end do; a end proc:
    seq(A175067(n), n=1..80); # Ridouane Oudra, Dec 12 2024
    # second Maple program:
    a:= n-> add(`if`(n=d^ilog[d](n), d, 0), d=numtheory[divisors](n)):
    seq(a(n), n=1..72);  # Alois P. Heinz, Dec 12 2024
  • Mathematica
    Table[Plus @@ (n^(1/Divisors[GCD @@ FactorInteger[n][[All, 2]]])), {n, 72}] (* Ivan Neretin, May 13 2015 *)

Formula

a(n) = A175070(n) + n. [Jaroslav Krizek, Jan 24 2010]
From Ridouane Oudra, Dec 12 2024: (Start)
a(n) = n, for n in A007916.
a(n^m) = Sum_{d|m} n^d, for n in A007916 and m an integer >0.
More generally, for all integers n we have :
a(n) = Sum_{d|A253641(n)} n^(d/A253641(n)).
a(n) = Sum_{d|A253641(n)} A052410(n)^d. (End)

Extensions

Name edited by Michel Marcus, Jun 13 2018

A178645 a(n) = sum of divisors d of n such that d^k is not equal to n for any k >= 1.

Original entry on oeis.org

0, 1, 1, 1, 1, 6, 1, 5, 1, 8, 1, 16, 1, 10, 9, 9, 1, 21, 1, 22, 11, 14, 1, 36, 1, 16, 10, 28, 1, 42, 1, 29, 15, 20, 13, 49, 1, 22, 17, 50, 1, 54, 1, 40, 33, 26, 1, 76, 1, 43, 21, 46, 1, 66, 17, 64, 23, 32, 1, 108, 1, 34, 41, 49, 19, 78, 1, 58, 27, 74, 1, 123, 1, 40, 49, 64, 19, 90, 1, 106, 28, 44, 1, 140, 23, 46, 33, 92, 1, 144, 21, 76, 35, 50, 25, 156, 1, 73, 57, 107
Offset: 1

Views

Author

Jaroslav Krizek, Dec 25 2010

Keywords

Examples

			For n = 16, set of such divisors is {1, 8}; a(16) = 1+8=9.
For n = 90, which is not a perfect power (A001597), the only divisor d for which d^k = 90 is 90 itself, with k=1, thus a(90) = A001065(90) = A000203(90) - 90 = 144. - _Antti Karttunen_, Jun 12 2018
		

Crossrefs

Programs

Formula

a(n) = A000203(n) - A175067(n).
a(1) = 0, a(p) = 1, a(pq) = p+q+1, a(pq...z) = [(p+1)*(q+1)*…*(z+1)] - (pq…z), for p, q = primes, k = natural numbers, pq...z = product of k (k > 2) distinct primes p, q, ..., z.

Extensions

Term a(90) corrected from 204 to 144 by Antti Karttunen, Jun 12 2018
Showing 1-2 of 2 results.