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.

A348538 Number of partitions of n into 3 parts whose smallest part divides n.

Original entry on oeis.org

0, 0, 1, 1, 2, 3, 3, 5, 5, 7, 5, 12, 6, 11, 12, 16, 8, 21, 9, 25, 18, 19, 11, 41, 18, 23, 24, 38, 14, 54, 15, 45, 30, 31, 36, 76, 18, 35, 36, 80, 20, 81, 21, 64, 68, 43, 23, 121, 39, 76, 48, 77, 26, 108, 60, 119, 54, 55, 29, 191, 30, 59, 101, 118, 72, 135, 33, 103, 66, 156, 35
Offset: 1

Views

Author

Wesley Ivan Hurt, Oct 21 2021

Keywords

Crossrefs

Cf. A069905.

Programs

Formula

a(n) = Sum_{j=1..floor(n/3)} Sum_{i=j..floor((n-j)/2)} (1 - ceiling(n/j) + floor(n/j)).