login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A124636
Poincaré series [or Poincare series] P(C_{3,2}(0); t).
1
1, 0, 3, 4, 7, 12, 24, 28, 55, 76, 111, 160, 238, 304, 447, 588, 784, 1036, 1379, 1728, 2278, 2864, 3611, 4524, 5673, 6908, 8594, 10436, 12669, 15308, 18479, 21944, 26319, 31128, 36770, 43280, 50868, 59184, 69194, 80184, 92784, 107064, 123354, 141168, 161940, 184656, 210258, 238872, 270993
OFFSET
0,3
FORMULA
G.f.: (1 - x^2 + x^4)/((1 - x^2)^4*(1 - x^3)^4). - Robin Visser, Mar 13 2024
PROG
(Sage)
def a(n):
if n==0: return 1
f = (1-x^2+x^4)/((1-x^2)^4*(1-x^3)^4)
return f.taylor(x, 0, n).coefficient(x^n) # Robin Visser, Mar 13 2024
CROSSREFS
Cf. A123991.
Sequence in context: A325851 A062202 A049859 * A231337 A373805 A049930
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 21 2006
EXTENSIONS
More terms from Robin Visser, Mar 13 2024
STATUS
approved