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

A174351
a(n) = lambda(Fibonacci(n)).
1
1, 1, -1, -1, -1, -1, -1, 1, 1, 1, -1, 1, -1, 1, -1, -1, -1, -1, 1, 1, -1, 1, -1, -1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, -1, -1, -1, 1, 1, -1, -1, -1, -1, -1, -1, 1, -1, 1, -1, 1, 1, 1, 1, -1, -1, -1, 1, 1, 1, -1, -1, 1, -1, -1, -1, -1, -1, -1, 1, 1, 1, 1, 1, -1, 1, 1, 1, -1, -1, -1
OFFSET
1,1
FORMULA
a(n) = A008836(A000045(n)).
EXAMPLE
L(Fibonacci(1))= L(Fibonacci(2))= L(1)= 1.
L(Fibonacci(3))= L(2) = -1.
L(Fibonacci(12))= L(144)= 1.
MAPLE
A174351 := proc(n)
A008836(combinat[fibonacci](n)) ;
end proc: # R. J. Mathar, Jul 08 2012
PROG
(PARI) a(n)=(-1)^bigomega(fibonacci(n)) \\ Charles R Greathouse IV, Jun 13 2013
CROSSREFS
KEYWORD
sign,less
AUTHOR
Michel Lagneau, Mar 16 2010
EXTENSIONS
Examples edited by Harvey P. Dale, Dec 02 2022
STATUS
approved