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.

Previous Showing 41-42 of 42 results.

A176550 Numbers k such that (k-th odd semiprime)/(j-th prime) is prime and ((k+1)-th odd semiprime)/((j+1)-th prime) is prime for some j.

Original entry on oeis.org

1, 2, 3, 5, 9, 11, 18, 20, 21, 22, 24, 29, 34, 35, 42, 43, 57, 61, 74, 79, 81, 95, 101, 102, 111, 112, 118, 120, 123, 128, 136, 151, 153, 154, 163, 166, 167, 170, 173, 177, 190, 194, 195, 198, 199, 203, 205, 208, 212, 213, 239, 242, 245, 263, 267, 271, 278, 283
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Apr 20 2010

Keywords

Crossrefs

Programs

  • Maple
    A046315 := proc(n) option remember; if n = 1 then 9; else for a from procname(n-1)+2 by 2 do if numtheory[bigomega](a) = 2 then return a; end if; end do: end if; end proc:
    A020639 := proc(n) numtheory[factorset](n) ; min(op(%)) ; end proc:
    isA176550 := proc(n) os := A046315(n) ; p := A020639(os) ; q := os/p ; ( A046315(n+1) mod nextprime(p) ) = 0 or (A046315(n+1) mod nextprime(q) = 0 ) ; end proc:
    for n from 1 to 300 do if isA176550(n) then printf("%d,",n) ; end if; end do: # R. J. Mathar, May 30 2010

Extensions

Corrected (39 removed, 43 inserted) and extended by R. J. Mathar, May 30 2010

A177193 The twin primes p such that m and k are also twin primes where m*k=semiprime(p).

Original entry on oeis.org

3, 7, 11, 13, 17, 19, 31, 43, 59, 61, 71, 101, 103, 139, 179, 311, 313, 347, 349, 421, 463, 523, 569, 571, 599, 601, 617, 659, 823, 1019, 1021, 1031, 1061, 1093, 1153, 1319, 1321, 1429, 1619, 1667, 1697, 1721, 1787, 1789
Offset: 1

Views

Author

Juri-Stepan Gerasimov, May 04 2010

Keywords

Examples

			a(1)=3 because 3*3=semiprime(3) and 3=twin prime, a(2)=7 because 3*7=semiprime(7) and 3,7 are twin primes.
		

Crossrefs

Extensions

Entries checked and sequence extended beyond 139 - R. J. Mathar, May 06 2010
Previous Showing 41-42 of 42 results.