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!)
A215453 a(n) = least k>0 such that n^n divides Fibonacci(k). 3
1, 6, 36, 192, 3125, 3888, 941192, 12582912, 516560652, 7500000000, 259374246010, 743008370688, 163086595857367, 1190572159881216, 583858520507812500, 13835058055282163712, 437950726881001816329, 3278867339608044797952, 1874292305362402347591138, 78643200000000000000000000, 2225747435575612389097571208 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A001177(n^n)
EXAMPLE
a(2): least k>0 such that 2^2 divides Fibonacci(k) is k=6: Fibonacci(6)=8. So a(2)=6.
PROG
(Python)
TOP = 9
prpr = 0
prev = k = y = 1
res = [-1]*TOP
ii = [0]*TOP
for i in range(1, TOP):
ii[i] = i**i
while y<TOP:
for i in range(y, TOP):
if res[i]<0 and prev % ii[i] == 0:
res[i] = k
y += 1
for i in range(1, TOP):
print res[i],
print
curr = prpr+prev
prpr = prev
prev = curr
k += 1
CROSSREFS
Cf. A001177 (least k such that n divides Fibonacci(k)).
Cf. A132632 (least k such that n^2 divides Fibonacci(k)).
Cf. A132633 (least k such that n^3 divides Fibonacci(k)).
Cf. A214528 (least k such that n! divides Fibonacci(k)).
Cf. A215011 (least k such that triangular(n) divides Fibonacci(k)).
Sequence in context: A146883 A159721 A106539 * A267229 A048980 A200782
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Aug 11 2012
EXTENSIONS
a(9) from Giovanni Resta, Jul 20 2013
Terms a(10) onward from Max Alekseyev, Jan 30 2014
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 April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)