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.
%I A247475 #17 Dec 02 2014 03:01:32 %S A247475 236,3515,5735,71177,1113143,1317221,1719323,1923437,2329667,2931899, %T A247475 31371147,37411517,41431763,43472021,47532491,53593127,59613599, %U A247475 61674087,67714757,71735183,73795767,79836557,83897387 %N A247475 Numbers formed by concatenating two successive primes and their product. %H A247475 Michael De Vlieger, <a href="/A247475/b247475.txt">Table of n, a(n) for n = 1..10000</a> %e A247475 For n=1 the successive primes are 2 and 3, so the number formed is 236. %t A247475 a247475[n_Integer] := Module[{p}, p := Prime /@ List[n, n + 1]; %t A247475 FromDigits@Flatten@Join[IntegerDigits[p], IntegerDigits[Times @@ p]]]; a247475/@Range[120] (* _Michael De Vlieger_, Dec 01 2014 *) %K A247475 nonn,base %O A247475 1,1 %A A247475 _Jennifer Jin_, Nov 30 2014