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

 


A262428
Concatenate the n-th prime with the n-th semiprime.
0
24, 36, 59, 710, 1114, 1315, 1721, 1922, 2325, 2926, 3133, 3734, 4135, 4338, 4739, 5346, 5949, 6151, 6755, 7157, 7358, 7962, 8365, 8969, 9774, 10177, 10382, 10785, 10986, 11387, 12791, 13193, 13794, 13995, 149106, 151111, 157115, 163118, 167119, 173121, 179122, 181123, 191129, 193133, 197134
OFFSET
1,1
COMMENTS
Sequence is simply visual coexistence of two core and nice sequences. - Altug Alkan, Sep 28 2015
MATHEMATICA
t = Select[Range@ 10000, PrimeOmega@ # == 2 &]; Table[FromDigits@ Join[IntegerDigits@ Prime@ n, IntegerDigits@ t[[n]]], {n, 50}] (* Michael De Vlieger, Sep 22 2015 *)
PROG
(PARI) m=0; for (n=1, 250, if (bigomega(n) == 2, m++; print1(Str(prime(m), n), ", "))) \\ Altug Alkan, Sep 23 2015
(Perl) use ntheory ":all"; my $i=0; forprimes { print ++$i, " $_", nth_semiprime($i), "\n"; } 100; # Dana Jacobsen, Oct 11 2018
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Giovanni Teofilatto, Sep 22 2015
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 19 23:07 EDT 2024. Contains 376015 sequences. (Running on oeis4.)