OFFSET
1,1
COMMENTS
A000005(a(n)) is not a Fibonacci number.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
6 belongs to the sequence because it is not a Fibonacci number and its number of divisors, 4, is also not a Fibonacci number.
MATHEMATICA
With[{fibs=Fibonacci[Range[12]]}, Select[Range[Max[fibs]], FreeQ[fibs, #] && FreeQ[fibs, DivisorSigma[0, #]]&]] (* Harvey P. Dale, Jun 20 2021 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, May 22 2008
EXTENSIONS
Example clarified by Harvey P. Dale, Jun 20 2021
STATUS
approved