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

A114818
Indices of Fibonacci numbers with 9 prime factors when counted with multiplicity.
2
24, 80, 88, 110, 112, 184, 186, 189, 196, 225, 232, 243, 246, 248, 255, 268, 272, 275, 284, 286, 295, 328, 333, 357, 370, 412, 418, 425, 435, 477, 539, 556, 559, 561, 575, 591, 602, 603, 604, 625, 628, 629, 639, 689, 692, 695, 712, 717, 722, 747, 763, 764
OFFSET
1,1
EXAMPLE
a(1)=24 because the 54th Fibonacci number (i.e., 46368) consists of 9 prime factors (i.e., 2*2*2*2*2*3*3*7*23).
MATHEMATICA
t = {}; Do[f = FactorInteger[Fibonacci[n]]; If[Total[Transpose[f][[2]]] == 9, AppendTo[t, n]], {n, 2, 200}]; t (* T. D. Noe, Mar 14 2014 *)
PROG
(PARI) n=1; while(n<330, if(bigomega(fibonacci(n))==9, print1(n, ", ")); n++)
CROSSREFS
Column k=9 of A303215.
Sequence in context: A124140 A206003 A143839 * A190102 A060673 A167561
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Feb 19 2006
EXTENSIONS
More terms from Ryan Propper, May 24 2006
STATUS
approved