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-1 of 1 results.

A330573 a(n) = Sum_{k = 1..ceiling(n/2)} [u_2(k)*u_2(n+1-k)], where u_2(k) is number of unordered factorization k = i*j (A038548).

Original entry on oeis.org

0, 1, 1, 2, 3, 4, 5, 8, 7, 10, 10, 14, 14, 16, 16, 22, 20, 26, 24, 30, 28, 34, 30, 43, 36, 43, 40, 51, 44, 56, 49, 63, 55, 66, 55, 78, 64, 75, 70, 89, 72, 93, 77, 98, 87, 103, 84, 122, 94, 115, 104, 127, 102, 136, 109, 141, 123, 143, 117, 170, 128, 153, 138, 174, 138, 183, 143, 183, 161, 189, 152, 224, 163, 200, 180
Offset: 0

Views

Author

N. J. A. Sloane, Jan 08 2020

Keywords

Comments

An analog of A055507 for unordered factorizations.
For background references see A330570.

Crossrefs

See A330572 for another version.

Programs

  • Mathematica
    s[n_] := s[n] = Ceiling[DivisorSigma[0, n]/2]; a[n_] := Sum[s[k]*s[n + 1 - k], {k, 1, Ceiling[n/2]}]; Array[a, 100, 0] (* Amiram Eldar, Apr 19 2024*)

Extensions

Offset and name corrected by Amiram Eldar, Apr 19 2024
Showing 1-1 of 1 results.