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.

A134732 Concatenation of first n members of the Padovan sequence A000931, starting at (1, 1, 1, 2,).

Original entry on oeis.org

1, 11, 111, 1112, 11122, 111223, 1112234, 11122345, 111223457, 1112234579, 111223457912, 11122345791216, 1112234579121621, 111223457912162128, 11122345791216212837, 1112234579121621283749, 111223457912162128374965
Offset: 1

Views

Author

Omar E. Pol, Nov 10 2007

Keywords

Crossrefs

Cf. A000931, A007908, A019523, A102397. See A132347 for another version.

Programs

  • Mathematica
    Module[{nn=20,padseq},padseq=LinearRecurrence[{0,1,1},{1,1,1,2},nn];Table[ FromDigits[ Flatten[IntegerDigits/@Take[padseq,n]]],{n,nn}]] (* Harvey P. Dale, Feb 18 2023 *)