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.

A103397 Semiprimes in A103377.

Original entry on oeis.org

4, 9, 15, 21, 33, 38, 58, 65, 86, 106, 121, 129, 265, 511, 8114, 8193, 16307, 16853, 17855, 19857, 31298, 68037, 104739, 124205, 131209, 134149, 140457, 152849, 252914, 259918, 265358, 274606, 417527, 2498871, 5291863, 8424051, 8743821
Offset: 1

Views

Author

Jonathan Vos Post, Feb 15 2005

Keywords

Examples

			2071468241 is an element of A103377 and 2071468241= 17 * 121851073 which shows that it is a semiprime.
		

Crossrefs

Programs

  • Mathematica
    SemiprimeQ[n_]:=Plus@@FactorInteger[n][[All, 2]]?2; Clear[a]; k=9; Do[a[n]=1, {n, k+1}]; a[n_]:=a[n]=a[n-k]+a[n-k-1]; A103377=Array[a, 100] A103387=Union[Select[Array[a, 1000], PrimeQ]] A103397=Union[Select[Array[a, 300], SemiprimeQ]] N[Solve[x^10 - x - 1 == 0, x], 111][[2]]

Formula

Intersection of A103377 with A001358.