login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A172485 The case S(-1,-2,3) of the family of self-convolutive recurrences studied by Martin and Kearney. 3
1, -1, -1, 3, 3, -21, 27, 27, -117, 27, 459, -837, -405, 3483, -2997, -9477, 25515, -1701, -91125, 130491, 165483, -732645, 422091, 2136699, -4546773, -1712421, 19597707, -21237957, -43597845, 140635035, -32890293, -483552261, 804188331 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
R. J. Martin and M. J. Kearney, An exactly solvable self-convolutive recurrence, arXiv:1103.4936 [math.CO], 2011.
R. J. Martin and M. J. Kearney, An exactly solvable self-convolutive recurrence, Aequat. Math., 80 (2010), 291-318. see p. 311.
FORMULA
a(n) = - (n + 2) * a(n-1) + 3 * Sum_{k=1..n} a(k-1) * a(n-k) if n>0. - Michael Somos, Jul 24 2011
G.f.: (x + 2*x^2 + 2*x^3) / (1 + 3*x + 6*x^2 + 6*x^3).
a(n) = -3 * (a(n-1) + 2*a(n-2) + 2*a(n-3)) if n>3.
G.f.: x / (1 + x / (1 - 2*x / (1 + 2*x / (1 - x / (1 + 3*x))))). - Michael Somos, Jan 03 2013
EXAMPLE
G.f. = x - x^2 - x^3 + 3*x^4 + 3*x^5 - 21*x^6 + 27*x^7 + 27*x^8 - 117*x^9 + ...
MATHEMATICA
CoefficientList[Series[1/(1 + x/(1 - 2*x/(1 + 2*x/(1 - x/(1 + 3*x))))), {x, 0, 40}], x] (* Vincenzo Librandi, Jan 03 2013 *)
PROG
(PARI) {a(n) = local(A); if( n<1, 0, A = vector(n); A[1] = 1; for( k=2, n, A[k] = -(k + 2) * A[k-1] + 3 * sum( j=1, k-1, A[j] * A[k-j])); A[n])}; /* Michael Somos, Jul 24 2011 */
(Magma) I:=[1, -1, -1, 3, 3, -21]; [n le 6 select I[n] else -3*(Self(n-1)+2*Self(n-2)+2*Self(n-3)): n in [1..40]]; // Vincenzo Librandi, Jan 03 2013
CROSSREFS
Sequence in context: A367995 A205452 A159910 * A230647 A130723 A369078
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Nov 20 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 8 04:18 EDT 2024. Contains 372317 sequences. (Running on oeis4.)