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

A075734
Fibonacci numbers F(k) when k is a product of an even number of distinct primes A030229 (mu(k)=1).
0
1, 8, 55, 377, 610, 10946, 17711, 121393, 3524578, 5702887, 9227465, 39088169, 63245986, 1836311903, 20365011074, 139583862445, 365435296162, 591286729879, 4052739537881, 17167680177565, 117669030460994
OFFSET
1,2
EXAMPLE
14=2*7 and fibonacci(14)=377, 15=3*5 and fibonacci(15)=610,...
MAPLE
with(combinat, fibonacci): fib_m1dsk := proc(n); if (numtheory[mobius](n)=1) then RETURN(fibonacci(n)); fi; end: seq((fib_m1dsk((i))), i=1..100);
CROSSREFS
Sequence in context: A013698 A154245 A143420 * A033890 A010924 A308687
KEYWORD
easy,nonn
AUTHOR
Jani Melik, Oct 07 2002
STATUS
approved