OFFSET
1,5
COMMENTS
The one-part partition n = n is included in the count.
For the relation to pentagonal numbers see also A330888.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
FORMULA
Conjecture: G.f.: Sum_{n>=1} n*x^(n*(3*n-1)/2)/(1-x^n).
Proof from Matthew C. Russell, Nov 21 2020:
The summation variable n runs over the number of parts in the partition.
For fixed n, the smallest such partition is:
1 + 4 + 7 + ... + (3n-2).
The above sum is equal to n * (3*n-1) / 2. That's where the x^(n*(3*n-1)/2) factor comes from.
Then we want to (add 1 to every part), (add 2 to every part), etc. to get 2 + 5 + 8 + ..., 3 + 6 + 9 + ..., which corresponds to adding n, 2*n, 3*n, etc. to the base partition. So we divide by (1 - x^n).
Multiply by n (to count the total number of parts) and we are done. QED
Sum_{k=1..n} a(k) ~ (2/3)^(3/2) * n^(3/2). - Vaclav Kotesovec, Oct 23 2024
EXAMPLE
For n = 21 there are three partitions of 21 into consecutive parts that differ by 3, including 21 as a partition. They are [21], [12, 9] and [10, 7, 4]. The number of parts of these partitions are 1, 2 and 3 respectively. The total number of parts is 1 + 2 + 3 = 6, so a(27) = 6.
MAPLE
A330889 := proc(n)
local a;
a := 0 ;
for k from 1 do
if n>= A000325(k) then
a := a+A330888(n, k);
else
return a;
end if;
end do:
end proc: # R. J. Mathar, Oct 02 2020
MATHEMATICA
nmax = 100;
CoefficientList[Sum[n x^(n(3n-1)/2-1)/(1-x^n), {n, 1, nmax}]+O[x]^nmax, x] (* Jean-François Alcover, Nov 30 2020 *)
Table[Sum[If[n > 3*k*(k-1)/2 && IntegerQ[n/k - 3*(k-1)/2], k, 0], {k, Divisors[2*n]}], {n, 1, 100}] (* Vaclav Kotesovec, Oct 23 2024 *)
PROG
(PARI) my(N=66, x='x+O('x^N)); Vec(sum(k=1, N, k*x^(k*(3*k-1)/2)/(1-x^k))) \\ Seiichi Manyama, Dec 04 2020
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Apr 30 2020
EXTENSIONS
More terms from R. J. Mathar, Oct 02 2020
STATUS
approved