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.

A048446 Take the first n numbers written in base 15, concatenate them, then convert from base 15 to base 10.

Original entry on oeis.org

1, 17, 258, 3874, 58115, 871731, 13075972, 196139588, 2942093829, 44131407445, 661971111686, 9929566675302, 148943500129543, 2234152501943159, 502684312937210790, 113103970410872427766, 25448393342446296247367, 5725888502050416655657593, 1288324912961343747522958444
Offset: 1

Views

Author

Patrick De Geest, May 15 1999

Keywords

Examples

			a(14) = (1)(2)(3)(4)(5)(6)(7)(8)(9)(A)(B)(C)(D)(E) = 123456789ABCDE_15 = 2234152501943159.
		

Crossrefs

Cf. A014898.
Concatenation of first n numbers in other bases: 2: A047778, 3: A048435, 4: A048436, 5: A048437, 6: A048438, 7: A048439, 8: A048440, 9: A048441, 10: A007908, 11: A048442, 12: A048443, 13: A048444, 14: A048445, 15: this sequence, 16: A048447.

Programs

  • Magma
    [n eq 1 select 1 else Self(n-1) * 15^(1+Ilog(15, n)) + n: n in [1..20]]; // Vincenzo Librandi, Dec 30 2012
  • Mathematica
    If[STARTPOINT==1, n={}, n=Flatten[IntegerDigits[Range[STARTPOINT-1], 15]]]; Table[AppendTo[n, IntegerDigits[w, 15]]; n=Flatten[n]; FromDigits[n, 15], {w, STARTPOINT, ENDPOINT}] (* Dylan Hamilton, Aug 11 2010 *)
    f[n_]:= FromDigits[Flatten@IntegerDigits[Range@n, 15], 15]; Array[f, 20] (* Vincenzo Librandi, Dec 30 2012 *)