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.

A280085 Partial sums of A206032 (Product_{d|n} sigma(d)).

Original entry on oeis.org

1, 4, 8, 29, 35, 179, 187, 502, 554, 878, 890, 29114, 29128, 29704, 30280, 40045, 40063, 113071, 113091, 208347, 209371, 210667, 210691, 25612291, 25612477, 25614241, 25616321, 25842113, 25842143, 52715999, 52716031, 53331226, 53333530, 53336446, 53338750
Offset: 1

Views

Author

Jaroslav Krizek, Dec 26 2016

Keywords

Comments

sigma(n) is the sum of the divisors of n (A000203).

Crossrefs

Cf. A000203, A007429, A206032, A280077 (partial sums of A007429), A280086 (partial products of A206032).

Programs

  • Magma
    [&+[&*[SumOfDivisors(d): d in Divisors(k)]: k in [1..n]]: n in [1..100]]
  • Mathematica
    Accumulate@ Array[Product[DivisorSigma[1, d], {d, Divisors@ #}] &, 35] (* Michael De Vlieger, Dec 26 2016 *)

Formula

a(n) = Sum_{i=1..n} A206032(i).

A280115 Partial products of A175317 (Sum_{d|n} pod(d)).

Original entry on oeis.org

1, 3, 12, 132, 792, 33264, 266112, 19958400, 618710400, 66820723200, 801848678400, 1425686950195200, 19959617302732800, 4111681164362956800, 962133392460931891200, 1057384598314564148428800, 19032922769662154671718400, 112313277263776374717810278400
Offset: 1

Views

Author

Jaroslav Krizek, Dec 26 2016

Keywords

Comments

pod(n) is the product of the divisors of n (A007955).

Crossrefs

Cf. A007955, A175317, A206032, A280086 (partial products of A206032), A280114 (partial sums of A175317).

Programs

  • Magma
    [&*[&+[&*[b: b in Divisors(d)]: d in Divisors(k)]: k in [1..n]]: n in [1..1000]]
  • Mathematica
    FoldList[Times[#1, #2] &, Array[Sum[Times @@ Divisors@ d, {d, Divisors@ #}] &, 18]] (* Michael De Vlieger, Dec 26 2016 *)

Formula

a(n) = Product_{i=1..n} A175317(i).
Showing 1-2 of 2 results.