OFFSET
0,2
COMMENTS
a(n) is the number of partitions of n into parts 1, 3, 9, and 10. - Joerg Arndt, Sep 29 2025
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (23,-169,417,-270).
FORMULA
a(n) = -1/144 + 10^(n+3)/63 + 3^(n+2)/28 - 3*9^(n+2)/16. - R. J. Mathar, Mar 15 2011
MATHEMATICA
CoefficientList[Series[1 / ((1 - x) (1 - 3 x) (1 - 9 x) (1 - 10 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 11 2013 *)
LinearRecurrence[{23, -169, 417, -270}, {1, 23, 360, 4810}, 30] (* Harvey P. Dale, Nov 18 2018 *)
PROG
(PARI) Vec(1/((1-x)*(1-3*x)*(1-9*x)*(1-10*x))+O(x^30)) \\ Charles R Greathouse IV, Sep 26 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
