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.

Previous Showing 11-13 of 13 results.

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

Original entry on oeis.org

1, 3, 4, 5, 8, 7, 8, 14, 10, 11, 18, 13, 17, 22, 16, 17, 26, 26, 20, 30, 22, 23, 42, 25, 30, 38, 28, 38, 42, 31, 32, 55, 44, 35, 50, 37, 38, 65, 50, 41, 63, 43, 56, 62, 46, 58, 66, 62, 50, 81, 52, 53, 100, 55, 56, 78, 58, 74, 94, 74, 68, 86, 80, 65, 90, 67, 82, 124, 70, 71, 98, 86, 92, 117, 76, 77
Offset: 1

Views

Author

Seiichi Manyama, Jul 04 2023

Keywords

Crossrefs

Programs

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

Formula

a(n) = (1/2) * Sum_{d | 2*n-1} (d+1) = A007503(2*n-1)/2.
G.f.: Sum_{k>0} x^k / (1 - x^(2*k-1))^2.
a(n) = A336840(A064216(n)). - Antti Karttunen, Nov 30 2024

A349910 a(n) = Sum_{d|n, dA048673(d).

Original entry on oeis.org

0, 1, 1, 3, 1, 6, 1, 8, 4, 7, 1, 19, 1, 9, 8, 22, 1, 27, 1, 23, 10, 10, 1, 56, 5, 12, 17, 31, 1, 47, 1, 63, 11, 13, 11, 93, 1, 15, 13, 69, 1, 65, 1, 35, 39, 18, 1, 165, 7, 43, 14, 43, 1, 128, 12, 95, 16, 19, 1, 160, 1, 22, 51, 185, 14, 74, 1, 47, 19, 80, 1, 288, 1, 24, 51, 55, 14, 92, 1, 205, 80, 25, 1, 226, 15, 27
Offset: 1

Views

Author

Antti Karttunen, Dec 10 2021

Keywords

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := NextPrime[p]^e; s[1] = 1; s[n_] := (1 + Times @@ f @@@ FactorInteger[n])/2; a[n_] := DivisorSum[n, s[#] &, # < n &]; Array[a, 100] (* Amiram Eldar, Dec 12 2021 *)
  • PARI
    A048673(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); (factorback(f)+1)/2; };
    A349910(n) = sumdiv(n,d,if(d==n,0,A048673(d)));

Formula

a(n) = A336840(n) - A048673(n).

A336854 a(n) = A336841(n)/2.

Original entry on oeis.org

0, 1, 2, 7, 3, 18, 5, 34, 22, 26, 6, 96, 8, 42, 46, 142, 9, 163, 11, 137, 74, 50, 14, 420, 45, 66, 172, 219, 15, 324, 18, 547, 88, 74, 106, 811, 20, 90, 116, 596, 21, 516, 23, 260, 401, 114, 26, 1662, 115, 327, 130, 342, 29, 1188, 126, 948, 158, 122, 30, 1578, 33, 146, 639, 2005, 166, 612, 35, 383, 200, 732, 36, 3430
Offset: 1

Views

Author

Antti Karttunen, Aug 08 2020

Keywords

Crossrefs

Programs

  • PARI
    A003961(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
    A336854(n) = { my(s=A003961(n)); sumdiv(s,d,(s-d))/2; };

Formula

a(n) = Sum_{d|n} (A048673(n)-A048673(d)).
Previous Showing 11-13 of 13 results.