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.

Showing 1-1 of 1 results.

A262428 Concatenate the n-th prime with the n-th semiprime.

Original entry on oeis.org

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

Views

Author

Giovanni Teofilatto, Sep 22 2015

Keywords

Comments

Sequence is simply visual coexistence of two core and nice sequences. - Altug Alkan, Sep 28 2015

Crossrefs

Programs

  • Mathematica
    t = Select[Range@ 10000, PrimeOmega@ # == 2 &]; Table[FromDigits@ Join[IntegerDigits@ Prime@ n, IntegerDigits@ t[[n]]], {n, 50}] (* Michael De Vlieger, Sep 22 2015 *)
  • 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
Showing 1-1 of 1 results.