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.

A136152 Composites one larger than a prime and with exactly three distinct prime factors.

This page as a plain text file.
%I A136152 #10 Sep 21 2015 01:42:17
%S A136152 30,42,60,84,90,102,110,114,132,138,140,150,168,174,180,182,198,228,
%T A136152 230,234,240,252,258,264,270,282,294,308,312,318,348,350,354,360,374,
%U A136152 380,402,410,434,440,444,450,468,480,492,504,522,558,564,572,588,594,600
%N A136152 Composites one larger than a prime and with exactly three distinct prime factors.
%H A136152 Harvey P. Dale, <a href="/A136152/b136152.txt">Table of n, a(n) for n = 1..1000</a>
%F A136152 Find primes followed by N with exactly three prime factors, without repetition.
%F A136152 Equals A008864 INTERSECT A033992. - _R. J. Mathar_, Feb 20 2008
%e A136152 a(0)=30 because 30 follows the prime 29 and has three factors 2, 3 and 5.
%p A136152 isA008864 := proc(n) if n -prevprime(n) = 1 then true ; else false ; fi ; end: isA033992 := proc(n) if nops(numtheory[factorset](n)) = 3 then true ; else false ; fi ; end: isA136152 := proc(n) isA008864(n) and isA033992(n) ; end: for n from 1 do p := ithprime(n) ; if isA136152(p+1) then print(p+1) ; fi ; od: # _R. J. Mathar_, Feb 20 2008
%t A136152 Select[Prime[Range[110]]+1,PrimeNu[#]==3&] (* _Harvey P. Dale_, Apr 08 2012 *)
%Y A136152 Cf. A136151, A136153, A136154, A136155.
%K A136152 easy,nonn
%O A136152 1,1
%A A136152 _Enoch Haga_, Dec 16 2007
%E A136152 Edited by _R. J. Mathar_, Feb 20 2008