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.

A157355 Products of 3 distinct not safe primes.

This page as a plain text file.
%I A157355 #2 Mar 31 2012 12:38:20
%S A157355 78,102,114,174,186,222,246,258,318,366,402,426,438,442,474,494,534,
%T A157355 582,606,618,646,654,663,678,741,754,762,786,806,822,834,894,906,942,
%U A157355 962,969,978,986,1038,1054,1066,1086,1102,1118,1131,1146,1158,1178,1182
%N A157355 Products of 3 distinct not safe primes.
%C A157355 78=2*3*13; 2,3 and 13 are not safe prime numbers,...
%t A157355 lst={};Do[If[Plus@@Last/@FactorInteger[n]==3,a=Length[First/@FactorInteger[n]];If[a==3,b=First/@FactorInteger[n];c=b[[1]];d=b[[2]];e=b[[3]];If[ !PrimeQ[(c-1)/2]&&!PrimeQ[(d-1)/2]&&!PrimeQ[(e-1)/2],AppendTo[lst,n]]]],{n,7!}];lst
%Y A157355 Cf. A001358, A005384, A005385, A006881, A007304, A111206, A157342, A157344, A157345, A157346, A157347, A157352, A157353, A157354
%K A157355 nonn
%O A157355 1,1
%A A157355 _Vladimir Joseph Stephan Orlovsky_, Feb 27 2009