The series involves: $(n+(n+1)^2+(n+2)^3) \bmod 144 =0$ starting with $n=3$ and incrementing $n=n+6$
Examples:
$3+4^2+5^3 = 3+16+125 =144$ and $144 / 144 =1$
$9+10^2+11^3 = 9+100+1331 =1440$ and $1440 / 144 =10$
$15+16^2+17^3 = 15+256+4913 =5184$ and $5184 / 144 =36$
$21+22^2+23^3 = 21+484+12167 =12672$ and $12672 / 144 =88$
$27+28^2+29^3 = 27+784+24389 =25200$ and $25200 / 144 =175$
...
I have tried using OEIS for the sequence $144,1440,5184,12672,25200...$ and couldn't find anything and then I have tried using the sequence $1, 10,36,88,175...$ and one result came about. OEIS link
It mentions something about Pentagonal prism and so I checked wikipedia's page in regards to Pentagonal prism Wikipedia link, and then i tried searching the subject here on stackexchange. I have found many questions in regards to the subject, but either they are too complicated for my current level of understanding or I simply can't find the answer to the question as I am presenting:
Why is it that $(n+(n+1)^2+(n+2)^3) \bmod 144 =0$ starting with $n=3$ and incrementing $n=n+6$?
You are talking about values of $n$ of the form $3 + 6k$. If we plug that in we get $$(3+6k) + (6k+4)^2 + (6k+5)^3 = 216k^3 + 576k^2 + 504k + 144$$ $$ = 72\cdot3 k^3 + 4\cdot144k^2 + 72\cdot 7k + 144$$ The $k^2$ term and the constant term are both automatically divisible by $144$. Factoring out $72$ from the remaining terms, we get $3k^3 + 7k$, which is either the sum of two even numbers or the sum of two odd numbers, which either way is even, giving us the remaining factor of two needed to make the sum evenly divisible by $144.$ QED.