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”).

A051348
a(n) = F(n) / Product_{p|n} F(p), where F(k) is k-th Fibonacci number and the p's in product are the distinct primes dividing n.
1
1, 1, 1, 3, 1, 4, 1, 21, 17, 11, 1, 72, 1, 29, 61, 987, 1, 1292, 1, 1353, 421, 199, 1, 23184, 15005, 521, 98209, 24447, 1, 83204, 1, 2178309, 19801, 3571, 141961, 7465176, 1, 9349, 135721, 20466831, 1, 10304396, 1, 7880997, 113490317, 64079, 1
OFFSET
1,4
LINKS
FORMULA
a(n) = 1 if n is prime. - Joerg Arndt, Sep 07 2021
EXAMPLE
a(15) = F(15) / (F(3) * F(5)) = 610 / (2*5) = 61.
MATHEMATICA
fib[n_]:=Fibonacci[n]/Times@@(Fibonacci[#]&/@Transpose[ FactorInteger[ n]][[1]]); Array[fib, 50] (* Harvey P. Dale, May 19 2012 *)
CROSSREFS
Cf. A000045.
Sequence in context: A321743 A341766 A131632 * A253828 A190445 A141648
KEYWORD
nonn
AUTHOR
STATUS
approved