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!)
A221175 a(0)=-5, a(1)=6; thereafter a(n) = 2*a(n-1) + a(n-2). 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
Sequence in context: A347807 A161925 A078694 * A048007 A273402 A217295
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Jan 04 2013
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)