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!)
A116553 a(2*n+1) = 5*a(n), a(2*n+2) = 6*a(n) + a(n-1). 6
1, 5, 6, 25, 31, 30, 41, 125, 156, 155, 211, 150, 211, 205, 276, 625, 791, 780, 1061, 775, 1086, 1055, 1421, 750, 1111, 1055, 1416, 1025, 1441, 1380, 1861, 3125, 4026, 3955, 5371, 3900, 5471, 5305, 7146, 3875, 5711, 5430, 7291, 5275, 7416, 7105, 9581, 3750 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
From G. C. Greubel, Oct 2016: (Start)
a(2*n+1) = 5*a(n).
a(2*n+2) = 6*a(n) + a(n-1). (End)
MATHEMATICA
b[0] := 0; b[1] := 1;
b[n_?EvenQ] := b[n] = 5*b[n/2];
b[n_?OddQ] := b[n] = 6*b[(n - 1)/2] + b[(n - 3)/2];
Table[b[n], {n, 1, 70}]
CROSSREFS
Sequence in context: A039594 A137080 A025622 * A249222 A034497 A136888
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Mar 15 2006
EXTENSIONS
New name using formula, Joerg Arndt, Dec 17 2022
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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)