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!)
A071898 CONTINUANT transform of A002487: 1, 1, 2, 1, 3, 2, ... 2
1, 2, 5, 7, 26, 59, 203, 262, 1251, 4015, 21326, 46667, 254661, 810650, 3497261, 4307911, 25036816, 104455175, 756223041, 2373124298, 19741217425, 101079211423, 727295697386, 1555670606195, 11616989940751, 59640620309950, 488741952420351, 1525866477571003 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
N. J. A. Sloane, Transforms
MAPLE
b:= proc(n) option remember; `if`(n<2, n,
`if`(irem(n, 2, 'r')=0, b(r), b(r) + b(r+1)))
end:
a:= proc(n) option remember; `if`(n<0, 0,
`if`(n=0, 1, b(n)*a(n-1)+a(n-2)))
end:
seq(a(n), n=1..35); # Alois P. Heinz, Aug 06 2013
MATHEMATICA
b[n_] := b[n] = If[n < 2, n, r = Quotient[n, 2]; If[Mod[n, 2] == 0, b[r], b[r] + b[r + 1]]];
a[n_] := a[n] = If[n < 0, 0, If[n == 0, 1, b[n] a[n - 1] + a[n - 2]]];
Array[a, 35] (* Jean-François Alcover, Nov 10 2020, after Alois P. Heinz *)
CROSSREFS
Cf. A002487.
Sequence in context: A056921 A041245 A042159 * A002317 A343596 A137098
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 10 2002
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 7 13:07 EDT 2024. Contains 372303 sequences. (Running on oeis4.)