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.

A280086 Partial products of A206032 (Product_{d|n} sigma(d)).

Original entry on oeis.org

1, 3, 12, 252, 1512, 217728, 1741824, 548674560, 28531077120, 9244068986880, 110928827842560, 3130855237028413440, 43831973318397788160, 25247216631397125980160, 14542396779684744564572160, 142006504553621530673047142400, 2556117081965187552114848563200
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, A280078 (partial products of A007429), A280085 (partial sums of A206032).

Programs

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

Formula

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

A280114 Partial sums of A175317 (Sum_{d|n} pod(d)).

Original entry on oeis.org

1, 4, 8, 19, 25, 67, 75, 150, 181, 289, 301, 2079, 2093, 2299, 2533, 3632, 3650, 9551, 9571, 17687, 18139, 18637, 18661, 352279, 352410, 353102, 353862, 376028, 376058, 1186430, 1186462, 1220329, 1221433, 1222609, 1223847, 11309180, 11309218, 11310684
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, A280085 (partial sums of A206032), A280115 (partial products of A175317).

Programs

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

Formula

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