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.

A078260 a(n) = denominator(N), where N = 0.246...(2n) is the concatenation of the first n even numbers after decimal point.

Original entry on oeis.org

5, 25, 500, 2500, 100000, 25000000, 5000000000, 125000000000, 50000000000000, 500000000000000, 500000000000000000, 6250000000000000000, 5000000000000000000000, 250000000000000000000000, 10000000000000000000000000, 1250000000000000000000000000, 500000000000000000000000000000
Offset: 1

Views

Author

Amarnath Murthy, Nov 24 2002

Keywords

Crossrefs

Cf. A078257 (similar, with concatenation of 1 to n), A078261 (numerators).

Programs

  • Maple
    a:= n-> (t-> denom(t/10^length(t)))(parse(cat(2*i$i=1..n))):
    seq(a(n), n=1..17);  # Alois P. Heinz, Jun 25 2025
  • PARI
    a(n) = {my(s = ""); for (k=1, n, s = concat(s, Str(2*k))); denominator(eval(s)/10^(#s));} \\ Michel Marcus, Jan 15 2019
    
  • PARI
    a(n) = c = concat(vector(n, i, Str(2*i))); denominator(eval(c) / 10^#Str(c)) \\ David A. Corneth, Jan 15 2019

Extensions

More terms from Sascha Kurz, Jan 04 2003
a(5) and a(10) corrected, a(15)-a(17) from Charlie Neder, Jan 14 2019