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.

A363258 Expansion of Sum_{k>0} k * x^(2*k-1) / (1 - x^(4*k-3)).

Original entry on oeis.org

1, 1, 3, 1, 4, 1, 5, 3, 6, 1, 7, 1, 10, 4, 9, 1, 10, 3, 11, 5, 12, 1, 18, 1, 14, 6, 15, 3, 16, 1, 17, 10, 24, 1, 19, 1, 20, 10, 21, 1, 25, 1, 30, 9, 24, 5, 25, 3, 26, 13, 27, 1, 36, 1, 29, 11, 30, 3, 38, 6, 32, 12, 42, 1, 34, 1, 35, 18, 36, 1, 37, 5, 48, 20, 39, 1, 48, 3, 41, 15, 42, 1, 54, 1, 48, 19, 45, 10
Offset: 1

Views

Author

Seiichi Manyama, Jul 08 2023

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[4*n - 2, # + 3 &, Mod[#, 4] == 1 &]/4; Array[a, 100] (* Amiram Eldar, Jul 08 2023 *)
  • PARI
    a(n) = sumdiv(4*n-2, d, (d%4==1)*(d+3))/4;

Formula

a(n) = (1/4) * Sum_{d | 4*n-2, d==1 (mod 4)} (d+3).
G.f.: Sum_{k>0} x^k / (1 - x^(4*k-2))^2.

A363317 Sum of divisors of 4*n-3 of form 4*k+1.

Original entry on oeis.org

1, 6, 10, 14, 18, 22, 31, 30, 34, 38, 42, 60, 50, 54, 58, 62, 84, 70, 74, 78, 91, 108, 90, 94, 98, 102, 132, 110, 114, 140, 122, 156, 130, 134, 138, 142, 180, 150, 180, 158, 162, 204, 183, 174, 178, 182, 228, 220, 194, 198, 202, 252, 210, 214, 218, 252, 310, 230, 234, 238, 242, 300, 250, 254, 258, 300, 324
Offset: 1

Views

Author

Seiichi Manyama, Jul 08 2023

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[4*n - 3, # &, Mod[#, 4] == 1 &]; Array[a, 100] (* Amiram Eldar, Jul 08 2023 *)
  • PARI
    a(n) = sumdiv(4*n-3, d, (d%4==1)*d);

Formula

a(n) = A050449(4*n-3).
G.f.: Sum_{k>0} (4*k-3) * x^k / (1 - x^(4*k-3)).
Showing 1-2 of 2 results.