OFFSET
1,4
COMMENTS
After a(4) = 2, there are no primes in this sequence. Every element thereafter has at least two prime factors, the semiprimes (intersection of A007436 and A001358) starting 4, 6, 134, 831374, ... - Jonathan Vos Post, Dec 15 2004
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..500
N. J. A. Sloane, Transforms
FORMULA
G.f.: Sum_{n>=1} a(n)*x^n/(1 - x^n) = x/(1 - x - x^2). - Ilya Gutkovskiy, Apr 25 2017
MATHEMATICA
mt[n_] := Block[{d = Divisors[n]}, Plus @@ (MoebiusMu /@ (n/d)*Fibonacci /@ d)]; Table[ mt[n], {n, 38}] (* Robert G. Wilson v Dec 10 2004 *)
a[n_] := DivisorSum[n, Fibonacci[#] MoebiusMu[n/#]&]; Array[a, 40] (* Jean-François Alcover, Dec 01 2015 *)
PROG
(PARI) a(n)=sumdiv(n, d, fibonacci(d)*moebius(n/d))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Robert G. Wilson v, Dec 10 2004
STATUS
approved