login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A118688 Semiprimes for which the sum of the digits is also a semiprime. 4
4, 6, 9, 15, 22, 33, 46, 51, 55, 69, 77, 82, 86, 87, 91, 95, 118, 121, 123, 141, 145, 158, 159, 177, 185, 194, 202, 213, 217, 226, 235, 249, 253, 262, 267, 301, 303, 321, 329, 334, 339, 361, 365, 393, 411, 415, 437, 446, 447, 451, 473, 482, 489, 501, 505, 514 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first term congruent to 2 mod 9 is a(2729) = 29999. - Robert Israel, Jul 07 2015
Among first 10000 terms, numbers of terms congruent to {0..8} mod 9 are: {1,425,139,1453,2773,1233,1252,3087,2739}. Terms with minimal digitsum = 4 are: {4,22,121,202,301,1003,1111,2101,10003, 10021,10102,10201,11002,11101,12001,30001,100021,100102,100201,101011, 110002,110101,111001}. Is this subsequence infinite? - Zak Seidov, Jul 07 2015
LINKS
EXAMPLE
55 is in the sequence because (1) it is a semiprime and (2) the sum of its digits 5+5=10 is also a semiprime.
MAPLE
select(t -> map(numtheory:-bigomega, [t, convert(convert(t, base, 10), `+`)])=[2, 2], [$1..1000]); # Robert Israel, Jul 07 2015
MATHEMATICA
Select[Range[514], PrimeOmega[{Total[IntegerDigits[#]], #}]=={2, 2}&] (* Zak Seidov, Jul 07 2015 *)
PROG
(PARI) A007953(n)= { local(resul); resul=0; while(n>0, resul += n%10; n = (n-n%10)/10; ); return(resul); } { for(n=4, 600, if( bigomega(n)==2, if(bigomega(A007953(n)) == 2, print1(n, ", "); ); ); ); } \\ R. J. Mathar, May 23 2006
CROSSREFS
Sequence in context: A263106 A344468 A116589 * A118691 A087718 A033476
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 20 2006
EXTENSIONS
Corrected by R. J. Mathar, May 23 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 12:53 EDT 2024. Contains 371969 sequences. (Running on oeis4.)