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.

A116339 k times k+6 gives the concatenation of two numbers m and m+7.

Original entry on oeis.org

378, 617, 708, 903, 8761, 45456, 54539, 693063, 8181812, 88235288, 327935224, 330669332, 363636365, 418318517, 428571430, 461538455, 538461540, 571428565, 581681478, 636363630, 669330663, 672064771, 691571588
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

Programs

  • Maple
    f:= proc(d) local S,x;
      S:= map(rhs@op,[msolve((x+3)^2 = 16, 10^d+1)]);
    end proc:
    g:= proc(n,d) local m; m:= ((n+3)^2-16)/(10^d+1)+7; m >= 10^(d-1) and m < 10^d end proc:
    sort([seq](op(select(g,f(i),i)),i=2..13)); # Robert Israel, Jan 27 2024