login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A282756
Let F(k,n) = k*F(k,n-1) + F(k,n-2) with initial conditions F(k,0) = 0, F(k,1) = 1. Sequence lists the minimum 'n' such that F(k,n) > k^n.
0
3, 6, 14, 27, 45, 70, 101, 139, 184, 236, 296, 364, 440, 524, 616, 716, 826, 943, 1070, 1205, 1350, 1503, 1666, 1838, 2019, 2210, 2410, 2620, 2839, 3069, 3308, 3557, 3815, 4084, 4363, 4652, 4951, 5261, 5580, 5910, 6251, 6601, 6963, 7334, 7717, 8110, 8513, 8928, 9353, 9788
OFFSET
1,1
LINKS
Sergio Falcón and Ángel Plaza, On the Fibonacci k-numbers, Chaos, Solitons and Fractals, Elsevier, 32 (5), 1615 - 1624, 2007.
EXAMPLE
F(1,3) = 2 > 1^1;
F(2,6) = 70 > 2^6 = 64;
F(3,14) = 5097243 > 3^14 = 4782969;
...
MATHEMATICA
f[k_, n_] := Fibonacci[n, k]
Do[Do[If[f[k, n] > k^n, {Print[{k, n}], Break[]}], {n, 0, 10000}], {k, 50}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Sergio Falcon, Feb 21 2017
STATUS
approved