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!)
A144288 Fibonacci rabbit sequence number n coded in base n, also diagonal of A144287. 2
1, 2, 10, 276, 81901, 2247615258, 81658169024988865, 644986443956439734064225751112, 3427833941153173630835645403655873661712817810325122 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
See program.
MAPLE
f:= proc(n, b) option remember; `if`(n<2, [n, n], [f(n-1, b)[1] *b^f(n-1, b)[2] +f(n-2, b)[1], f(n-1, b)[2] +f(n-2, b)[2]]) end: a:= n-> f(n, n)[1]: seq(a(n), n=1..11);
MATHEMATICA
f[n_, b_] := f[n, b] = If[n < 2, {n, n}, {f[n-1, b][[1]]*b^f[n-1, b][[2]] + f[n-2, b][[1]], f[n-1, b][[2]] + f[n-2, b][[2]]}]; a[n_] := f[n, n][[1]]; Table[a[n], {n, 1, 9}] (* Jean-François Alcover, Jan 03 2013, translated from Maple *)
CROSSREFS
Sequence in context: A005154 A074056 A206158 * A215286 A260231 A003047
KEYWORD
base,nice,nonn
AUTHOR
Alois P. Heinz, Sep 17 2008
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 1 10:38 EDT 2024. Contains 372163 sequences. (Running on oeis4.)