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

A180851 Sum of increasing powers of divisors: a(n) = Sum_{i=1..q} d(i)^i where d(1) < d(2) < ... < d(q) are the divisors of n.

Original entry on oeis.org

1, 5, 10, 69, 26, 1328, 50, 4165, 739, 10130, 122, 2994048, 170, 38764, 50760, 1052741, 290, 34072601, 362, 64100694, 194834, 235592, 530, 110111416192, 15651, 459178, 532180, 482430598, 842, 656271867808, 962, 1074794565, 1187262
Offset: 1

Views

Author

Jason Earls, Sep 21 2010

Keywords

Examples

			For n=4, the divisors of 4 are [1, 2, 4] and summing them as increasing powers yields: 1^1+2^2+4^3 = 69.
For n=12, the divisors of 12 are [1, 2, 3, 4, 6, 12] and summing them as increasing powers yields: 1^1+2^2+3^3+4^4+6^5+12^6 = 2994048.
		

Crossrefs

Cf. A027750.
Positions of primes: A180852.
Comparable sequences: A055225, A264786, A344459.

Programs

  • Maple
    f:= proc(n) local D,k;
      D:=sort(convert(numtheory:-divisors(n),list));
      add(D[k]^k,k=1..nops(D))
    end proc:
    map(f, [$1..100]); # Robert Israel, Sep 11 2020
  • Mathematica
    Total[Divisors[#]^Range[DivisorSigma[0,#]]]&/@Range[40] (* Harvey P. Dale, Aug 16 2011 *)
  • PARI
    a(n) = my(d = divisors(n)); sum(k=1, #d, d[k]^k); \\ Michel Marcus, Jan 01 2016

Extensions

Name made precise by Peter Munn, Sep 19 2024
Showing 1-1 of 1 results.