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.

Showing 1-2 of 2 results.

A303215 A(n,k) is the n-th index of a Fibonacci number with exactly k prime factors (counted with multiplicity); square array A(n,k), n>=1, k>=1, read by antidiagonals.

Original entry on oeis.org

3, 8, 4, 6, 9, 5, 20, 15, 10, 7, 18, 27, 16, 14, 11, 12, 44, 28, 21, 19, 13, 30, 40, 45, 32, 25, 22, 17, 54, 42, 50, 57, 52, 33, 26, 23, 24, 78, 56, 64, 63, 55, 35, 31, 29, 36, 80, 102, 66, 75, 68, 74, 37, 34, 43, 138, 100, 88, 128, 70, 92, 69, 77, 38, 41, 47
Offset: 1

Views

Author

Alois P. Heinz, Apr 19 2018

Keywords

Examples

			Square array A(n,k) begins:
   3,  8,  6, 20, 18,  12,  30,  54,  24,  36, ...
   4,  9, 15, 27, 44,  40,  42,  78,  80, 100, ...
   5, 10, 16, 28, 45,  50,  56, 102,  88, 114, ...
   7, 14, 21, 32, 57,  64,  66, 128, 110, 165, ...
  11, 19, 25, 52, 63,  75,  70, 130, 112, 174, ...
  13, 22, 33, 55, 68,  92,  81, 135, 184, 256, ...
  17, 26, 35, 74, 69,  95, 104, 147, 186, 266, ...
  23, 31, 37, 77, 76,  99, 105, 154, 189, 273, ...
  29, 34, 38, 85, 91, 116, 136, 170, 196, 282, ...
  43, 41, 39, 87, 98, 117, 148, 171, 225, 296, ...
		

Crossrefs

Programs

  • Maple
    F:= combinat[fibonacci]: with(numtheory):
    A:= proc() local h, p, q; p, q:= proc() [] end, 2;
          proc(n, k)
            while nops(p(k))
    				
  • Mathematica
    A[n_, k_] := Module[{h, p, q = 2}, p[k] = {}; While[Length[p[k]]Jean-François Alcover, Apr 30 2018, after Alois P. Heinz *)

Formula

A000045(A(n,k)) = A303216(n,k).
A001222(A000045(A(n,k))) = k.

A114812 Indices of Fibonacci numbers with 3 prime factors when counted with multiplicity.

Original entry on oeis.org

6, 15, 16, 21, 25, 33, 35, 37, 38, 39, 46, 49, 51, 58, 62, 65, 67, 82, 86, 103, 106, 119, 122, 139, 142, 145, 158, 166, 179, 181, 226, 233, 235, 241, 257, 263, 274, 281, 299, 301, 317, 337, 383, 389, 419, 457, 463, 473, 479, 491, 521, 541, 557, 619, 643, 659
Offset: 1

Views

Author

Shyam Sunder Gupta, Feb 19 2006

Keywords

Comments

1811, 1933, 1997, 2069, 2087, 2203, 2221, 2311, 2663, 2713, 3631, 4157, 4651, 5107, 6701, 7211, 8123 are also terms (from data in Kelly link). - Chai Wah Wu, Nov 11 2019

Examples

			a(2)=15 because 15th Fibonacci number (i.e., 610) consists of 3 prime factors (i.e., 2*5*61).
		

Crossrefs

Column k=3 of A303215.

Programs

  • Mathematica
    t = {}; Do[f = FactorInteger[Fibonacci[n]]; If[Total[Transpose[f][[2]]] == 3, AppendTo[t, n]], {n, 2, 100}]; t (* T. D. Noe, Mar 14 2014 *)
    Flatten[Position[Fibonacci[Range[700]],?(PrimeOmega[#]==3&)]] (* _Harvey P. Dale, Feb 15 2015 *)
  • PARI
    n=1;while(n<340,if(bigomega(fibonacci(n))==3,print1(n,", "));n++)

Formula

{n: A038575(n)=3}. [R. J. Mathar, Jun 08 2010]

Extensions

More terms from Ryan Propper, May 22 2006
Showing 1-2 of 2 results.