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

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A210711 Semiprimes formed by concatenating n, n, and 1 for n = 1, 2, 3,.... 1
111, 221, 551, 771, 11111, 14141, 15151, 16161, 19191, 23231, 24241, 29291, 30301, 34341, 36361, 37371, 38381, 39391, 42421, 44441, 47471, 50501, 53531, 55551, 56561, 59591, 62621, 68681, 70701, 74741, 75751, 77771, 79791, 81811, 83831, 84841, 87871, 91911, 95951, 96961, 1001001
(list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This is to A210511 as semiprimes A001358 are to primes A000040.
LINKS
EXAMPLE
a(1) = 11 because 111 = 3 * 37.
a(2) = 221 because 221 = 13 * 17.
331 is not in the sequence, because it is a prime.
a(5) = 11111 because "11" concatenated with "11" concatenated with "1" = 11111 = 41 * 271.
MAPLE
read("transforms"):
for n from 1 to 100 do
L := [n, n, 1] ;
p := digcatL(L) ;
if numtheory[bigomega](p) = 2 then
print(p) ;
end if;
end do: # R. J. Mathar, Jan 30 2013
PROG
(Magma)
IsSemiprime:=func<i|&+[d[2]: d in Factorization(i)] eq 2>;
[nn1: n in [1..100] | IsSemiprime(nn1) where nn1 is Seqint([1] cat Intseq(n) cat Intseq(n))]; // Bruno Berselli, Jan 30 2013
CROSSREFS
Sequence in context: A082945 A316849 A316850 * A084043 A291266 A033284
KEYWORD
nonn,base,easy
AUTHOR
Jonathan Vos Post, Jan 29 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 18 14:24 EDT 2024. Contains 376000 sequences. (Running on oeis4.)