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.

A164624 Primes p such that p + Floor[p/2] + Floor[p/3] is prime.

This page as a plain text file.
%I A164624 #3 Mar 31 2012 12:38:26
%S A164624 2,3,11,13,23,37,59,83,109,131,181,191,193,229,311,337,373,383,397,
%T A164624 443,479,541,563,599,613,743,769,877,911,983,1019,1021,1031,1091,1093,
%U A164624 1129,1153,1163,1237,1283,1297,1319,1381,1451,1453,1489,1523,1559,1571,1597
%N A164624 Primes p such that p + Floor[p/2] + Floor[p/3] is prime.
%C A164624 11+5+3=19, 13+6+4=23, 23+11+7=41, ..
%t A164624 lst={};Do[p=Prime[n];If[PrimeQ[p+Floor[p/2]+Floor[p/3]],AppendTo[lst,p]],{n,2*6!}];lst
%Y A164624 Subsequence of A038874. Cf. A038874, A097933
%K A164624 nonn
%O A164624 1,1
%A A164624 _Vladimir Joseph Stephan Orlovsky_, Aug 17 2009
%E A164624 Edited by _Charles R Greathouse IV_, Nov 02 2009