[go: up one dir, main page]

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!)
Search: a221172 -id:a221172
Displaying 1-4 of 4 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A078343 a(0) = -1, a(1) = 2; a(n) = 2*a(n-1) + a(n-2). +0
19
-1, 2, 3, 8, 19, 46, 111, 268, 647, 1562, 3771, 9104, 21979, 53062, 128103, 309268, 746639, 1802546, 4351731, 10506008, 25363747, 61233502, 147830751, 356895004, 861620759, 2080136522, 5021893803, 12123924128, 29269742059, 70663408246, 170596558551, 411856525348 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Inverse binomial transform of -1, 1, 6, 22, 76, 260, ... (see A111566). Binomial transform of -1, 3, -2, 6, -4, 12, -8, 24, -16, ... (see A162255). - R. J. Mathar, Oct 02 2012
REFERENCES
H. S. M. Coxeter, 1998, Numerical distances among the circles in a loxodromic sequence, Nieuw Arch. Wisk, 16, pp. 1-9.
LINKS
H. S. M. Coxeter, Numerical distances among the spheres in a loxodromic sequence, Math. Intell. 19(4) 1997 pp. 41-47. See page 41. See pp. 46-47.
Tanya Khovanova, Recursive Sequences.
José L. Ramírez, Gustavo N. Rubiano, and Rodrigo de Castro, A Generalization of the Fibonacci Word Fractal and the Fibonacci Snowflake, arXiv:1212.1368 [cs.DM], 2012.
FORMULA
For the unsigned version: a(1)=1; a(2)=2; a(n) = Sum_{k=2..n-1} (a(k) + a(k-1)).
a(n) is asymptotic to (1/4)*(-2+3*sqrt(2))*(1+sqrt(2))^n.
a(n) = A048746(n-3) + 2, for n > 2. - Ralf Stephan, Oct 17 2003
a(n) = 2*A000129(n) - A000129(n-1) if n > 0; abs(a(n)) = Sum_{k=0..floor(n/2)} (C(n-k-1, k) - C(n-k-1, k-1))2^(n-2k). - Paul Barry, Dec 23 2004
O.g.f.: (1-4*x)/(-1 + 2*x + x^2). - R. J. Mathar, Feb 15 2008
a(n) = 4*Pell(n) - Pell(n+1), where Pell = A000129. - Vladimir Reshetnikov, Sep 27 2016
a(n) = -(-1)^n * A048654(-n) = ( (-2+3*sqrt(2))*(1+sqrt(2))^n + (-2-3*sqrt(2))*(1-sqrt(2))^n )/4 for all n in Z. - Michael Somos, Jun 30 2022
2*a(n+1)^2 = A048655(n)^2 + (-1)^n*7. - Philippe Deléham, Mar 07 2023
E.g.f.: 3*exp(x)*sinh(sqrt(2)*x)/sqrt(2) - exp(x)*cosh(sqrt(2)*x). - Stefano Spezia, May 26 2024
EXAMPLE
G.f. = -1 + 2*x + 3*x^2 + 8*x^3 + 19*x^4 + 46*x^5 + 111*x^6 + ... - Michael Somos, Jun 30 2022
MAPLE
f:=proc(n) option remember; if n=0 then RETURN(-1); fi; if n=1 then RETURN(2); fi; 2*f(n-1)+f(n-2); end;
MATHEMATICA
Table[4 Fibonacci[n, 2] - Fibonacci[n + 1, 2], {n, 0, 30}] (* Vladimir Reshetnikov, Sep 27 2016 *)
LinearRecurrence[{2, 1}, {-1, 2}, 40] (* Harvey P. Dale, Apr 15 2019 *)
PROG
(Haskell)
a078343 n = a078343_list !! n
a078343_list = -1 : 2 : zipWith (+)
(map (* 2) $ tail a078343_list) a078343_list
-- Reinhard Zumkeller, Jan 04 2013
(PARI) a(n)=([0, 1; 1, 2]^n*[-1; 2])[1, 1] \\ Charles R Greathouse IV, Jun 11 2015
(Magma) m:=30; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!((1-4*x)/(-1+2*x+x^2))); // G. C. Greubel, Jul 26 2018
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Benoit Cloitre, Nov 22 2002
EXTENSIONS
Entry revised by N. J. A. Sloane, Apr 29 2004
STATUS
approved
A221173 a(0)=-3, a(1)=4; thereafter a(n) = 2*a(n-1) + a(n-2). +0
5
-3, 4, 5, 14, 33, 80, 193, 466, 1125, 2716, 6557, 15830, 38217, 92264, 222745, 537754, 1298253, 3134260, 7566773, 18267806, 44102385, 106472576, 257047537, 620567650, 1498182837, 3616933324, 8732049485, 21081032294, 50894114073, 122869260440, 296632634953 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
José L. Ramírez, Gustavo N. Rubiano, and Rodrigo de Castro, A Generalization of the Fibonacci Word Fractal and the Fibonacci Snowflake, arXiv preprint arXiv:1212.1368 [cs.DM], 2012-2014.
FORMULA
a(n) = 10*A000129(n)-3*A000129(n+1). - R. J. Mathar, Jan 14 2013
G.f.: -(10*x-3) / (x^2+2*x-1). - Colin Barker, Jul 10 2015
MATHEMATICA
LinearRecurrence[{2, 1}, {-3, 4}, 50] (* Harvey P. Dale, Apr 09 2022 *)
PROG
(Haskell)
a221173 n = a221173_list !! n
a221173_list = -3 : 4 : zipWith (+)
(map (* 2) $ tail a221173_list) a221173_list
-- Reinhard Zumkeller, Jan 04 2013
(PARI) Vec(-(10*x-3)/(x^2+2*x-1) + O(x^100)) \\ Colin Barker, Jul 10 2015
CROSSREFS
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Jan 04 2013
STATUS
approved
A221174 a(0)=-4, a(1)=5; thereafter a(n) = 2*a(n-1) + a(n-2). +0
7
-4, 5, 6, 17, 40, 97, 234, 565, 1364, 3293, 7950, 19193, 46336, 111865, 270066, 651997, 1574060, 3800117, 9174294, 22148705, 53471704, 129092113, 311655930, 752403973, 1816463876, 4385331725, 10587127326, 25559586377, 61706300080, 148972186537, 359650673154 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
From Greg Dresden, May 08 2023: (Start)
For n >= 3, 2*a(n) is the number of ways to tile this figure of length n-1 with two colors of squares and one color of domino. For n=8, we have here the figure of length n-1=7, and it has 2*a(8) = 2728 different tilings.
._ _
|_|_|_ _ _ _ _
|_|_|_|_|_|_|_|
(End)
LINKS
José L. Ramírez, Gustavo N. Rubiano, and Rodrigo de Castro, A Generalization of the Fibonacci Word Fractal and the Fibonacci Snowflake, arXiv preprint arXiv:1212.1368 [cs.DM], 2012-2014.
FORMULA
a(n) = 13*A000129(n) - 4*A000129(n+1). - R. J. Mathar, Jan 14 2013
G.f.: -(13*x-4) / (x^2+2*x-1). - Colin Barker, Jul 10 2015
a(n) is the numerator of the continued fraction [4, 2, ..., 2, 4] with n-3 2's in the middle. For denominators, see A048654. - Greg Dresden and Tongjia Rao, Sep 02 2021
PROG
(Haskell)
a221174 n = a221174_list !! n
a221174_list = -4 : 5 : zipWith (+)
(map (* 2) $ tail a221174_list) a221174_list
-- Reinhard Zumkeller, Jan 04 2013
(PARI) Vec(-(13*x-4)/(x^2+2*x-1) + O(x^50)) \\ Colin Barker, Jul 10 2015
CROSSREFS
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Jan 04 2013
STATUS
approved
A221175 a(0)=-5, a(1)=6; thereafter a(n) = 2*a(n-1) + a(n-2). +0
5
-5, 6, 7, 20, 47, 114, 275, 664, 1603, 3870, 9343, 22556, 54455, 131466, 317387, 766240, 1849867, 4465974, 10781815, 26029604, 62841023, 151711650, 366264323, 884240296, 2134744915, 5153730126, 12442205167, 30038140460, 72518486087, 175075112634 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
José L. Ramírez, Gustavo N. Rubiano, and Rodrigo de Castro, A Generalization of the Fibonacci Word Fractal and the Fibonacci Snowflake, arXiv preprint arXiv:1212.1368 [cs.DM], 2012-2014.
FORMULA
a(n) = 16*A000129(n)-5*A000129(n+1). - R. J. Mathar, Jan 14 2013
G.f.: -(16*x-5) / (x^2+2*x-1). - Colin Barker, Jul 10 2015
PROG
(Haskell)
a221175 n = a221175_list !! n
a221175_list = -5 : 6 : zipWith (+)
(map (* 2) $ tail a221175_list) a221175_list
-- Reinhard Zumkeller, Jan 04 2013
(PARI) Vec(-(16*x-5)/(x^2+2*x-1) + O(x^50)) \\ Colin Barker, Jul 10 2015
CROSSREFS
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Jan 04 2013
STATUS
approved
page 1

Search completed in 0.009 seconds

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 August 30 15:13 EDT 2024. Contains 375545 sequences. (Running on oeis4.)