|
| |
|
|
A023184
|
|
Least Fibonacci number ending with n.
|
|
3
| |
|
|
0, 1, 2, 3, 34, 5, 10946, 377, 8, 89, 610, 17711, 619220451666590135228675387863297874269396512, 13, 70492524767089125814114, 659034621587630041982498215
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
COMMENTS
| The Fibonacci index of the 12-th to 25-th terms respectively are 216,7,111,130,168,37,27,112,90,8,183,286,252 and 25.
|
|
|
EXAMPLE
| a(11) = 17711 is the smallest Fibonacci number ending in 11.
|
|
|
MAPLE
| with(combinat):for n from 1 to 40 do e := 1; g := ceil(log(n+1)/log(10)-0.00001): while((fibonacci(e) mod 10^g)<n or (fibonacci(e) mod 10^g)>n) do e := e+1:end do: q[n] := fibonacci(e):end do:seq(q[i], i=1..40);
|
|
|
CROSSREFS
| Cf. A000045, A023185, A020344, A020345.
Sequence in context: A046487 A062922 A080471 * A114229 A032816 A073657
Adjacent sequences: A023181 A023182 A023183 * A023185 A023186 A023187
|
|
|
KEYWORD
| nonn,base
|
|
|
AUTHOR
| David W. Wilson (davidwwilson(AT)comcast.net)
|
| |
|
|