cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A114815 Indices of Fibonacci numbers with 6 prime factors when counted with multiplicity.

Original entry on oeis.org

12, 40, 50, 64, 75, 92, 95, 99, 116, 117, 129, 133, 153, 155, 159, 177, 188, 194, 205, 206, 219, 237, 245, 265, 278, 314, 323, 327, 339, 341, 343, 346, 356, 358, 361, 362, 394, 407, 411, 417, 422, 427, 437, 446, 454, 466, 482, 502, 503, 505, 514, 515, 527
Offset: 1

Views

Author

Shyam Sunder Gupta, Feb 19 2006

Keywords

Examples

			a(1)=12 because 12th Fibonacci number (i.e., 144) consists of 6 prime factors (i.e., 2*2*2*2*3*3).
		

Crossrefs

Column k=6 of A303215.

Programs

  • Mathematica
    t = {}; Do[f = FactorInteger[Fibonacci[n]]; If[Total[Transpose[f][[2]]] == 6, AppendTo[t, n]], {n, 2, 100}]; t (* T. D. Noe, Mar 14 2014 *)
    Position[Fibonacci[Range[550]],?(PrimeOmega[#]==6&)]//Flatten (* _Harvey P. Dale, Jun 12 2017 *)
  • PARI
    n=1;while(n<330,if(bigomega(fibonacci(n))==6,print1(n,", "));n++)

Extensions

More terms from Ryan Propper, May 22 2006