OFFSET
1,2
COMMENTS
For given k and n positive integers, let T(k,n) represent the number of n-tuples of positive integers, whose minimum is zero and maximum is k. In this notation, the sequence corresponds to a(n) = T(4,n).
LINKS
O. Bagdasar, On Some Functions Involving the lcm and gcd of Integer Tuples, Scientific publications of the state university of Novi Pazar, Ser. A: Appl. Maths. Inform. and Mech., Vol. 6, 2 (2014), 91-100.
Index entries for linear recurrences with constant coefficients, signature (12,-47,60).
FORMULA
a(n) = 5^n-2*4^n+3^n.
a(n) = 12*a(n-1)-47*a(n-2)+60*a(n-3). G.f.: -2*x^2 / ((3*x-1)*(4*x-1)*(5*x-1)). - Colin Barker, Sep 17 2014
a(n) = 2*A016753(n-2) for n>1. - Colin Barker, Sep 17 2014
EXAMPLE
For n=2 the a(2)=2 solutions are (0,4) and (4,0).
PROG
(PARI) concat(0, Vec(-2*x^2/((3*x-1)*(4*x-1)*(5*x-1)) + O(x^100))) \\ Colin Barker, Sep 17 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ovidiu Bagdasar, Sep 17 2014
STATUS
approved