login
This site is supported by donations 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; internal format)
OFFSET

1,2

LINKS

Alois P. Heinz, Table of n, a(n) for n = 1..13

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);

CROSSREFS

Cf. A000045, A005203, A005205, A061107, A036299, A144287.

Sequence in context: A005154 A074056 A206158 * A003047 A028580 A171873

Adjacent sequences:  A144285 A144286 A144287 * A144289 A144290 A144291

KEYWORD

base,nice,nonn

AUTHOR

Alois P. Heinz (heinz(AT)hs-heilbronn.de), Sep 17 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 12:25 EST 2012. Contains 205786 sequences.