OFFSET
1,4
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
FORMULA
If n is not divisible by 4 then a(n) = 1, if n = 4 * 3^k * m where m is not divisible by 3 then a(n) = 3^(k+1).
EXAMPLE
a(12) = 9 because the 12th Fibonacci number is 144 and 144 = 9*16.
PROG
(PARI) a(n) = 3^valuation(fibonacci(n), 3) \\Michel Marcus, Jul 30 2013
(Haskell)
a060901 = a038500 . a000045 -- Reinhard Zumkeller, Feb 04 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ahmed Fares (ahmedfares(AT)my-deja.com), May 05 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), May 07 2001
STATUS
approved