cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A115022 a(n) = F(n-th squarefree)/product{p=primes,p|(n-th squarefree)} F(p), where F(m) is m-th Fibonacci number.

Original entry on oeis.org

1, 1, 1, 1, 4, 1, 11, 1, 1, 29, 61, 1, 1, 421, 199, 1, 521, 1, 83204, 1, 19801, 3571, 141961, 1, 9349, 135721, 1, 10304396, 1, 64079, 1, 6376021, 1, 313671601, 43701901, 1149851, 1, 1, 3010349, 14736206161, 156055561996, 1, 2053059121
Offset: 1

Views

Author

Leroy Quet, Feb 28 2006

Keywords

Examples

			The 7th squarefree integer is 10 = 2*5. So a(7) = F(10)/(F(2)F(5)) = 55/(1*5) = 11.
		

Crossrefs

Cf. A075731.
a(n)=1 if n is in A071403.

Programs

  • Maple
    count:= 0:
    for n from 1 while count < 50 do
      if numtheory:-issqrfree(n) then
         count:= count+1;
         A[count]:= combinat:-fibonacci(n)/mul(combinat:-fibonacci(p),p=numtheory:-factorset(n))
      fi
    od:
    seq(A[i],i=1..50); # Robert Israel, Dec 04 2018
  • Mathematica
    f[n_] := Fibonacci[n]/Times @@ (Fibonacci /@ FactorInteger[n][[;; , 1]]); f /@
    Select[Range[70], SquareFreeQ[#] &] (* Amiram Eldar, Dec 04 2018 *)

Extensions

More terms from Joshua Zucker, Jul 18 2007
Showing 1-1 of 1 results.