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.

A061161 Numerators in expansion of Euler transform of b(n) = 1/4.

Original entry on oeis.org

1, 1, 13, 55, 1235, 4615, 55801, 200343, 8977475, 36804235, 367235363, 1444888289, 32062742231, 120729974115, 1205864254225, 5201022002071, 395884671433315, 1603069490974835, 15989295873680415, 64312573140322525, 1250332447587844829, 5262481040435242585
Offset: 0

Views

Author

Vladeta Jovovic, Apr 17 2001

Keywords

Comments

Denominators of c(n) are 2^A004134(n).

Crossrefs

Programs

  • Maple
    b:= proc(n) option remember; `if`(n=0, 1, add(add(
          d/4, d=numtheory[divisors](j))*b(n-j), j=1..n)/n)
        end:
    a:= n-> numer(b(n)):
    seq(a(n), n=0..30);  # Alois P. Heinz, Jul 28 2017
  • Mathematica
    c[n_] := c[n] = If[n == 0, 1,
         (1/(4n)) Sum[c[n-k] DivisorSigma[1, k], {k, 1, n}]];
    a[n_] := Numerator[c[n]];
    Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Apr 24 2022 *)

Formula

Numerators of c(n), where c(n) = (1/(4*n))*Sum_{k=1..n} c(n-k)*sigma(k), n>0, c(0)=1.