login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A134732
Concatenation of first n members of the Padovan sequence A000931, starting at (1, 1, 1, 2,).
3
1, 11, 111, 1112, 11122, 111223, 1112234, 11122345, 111223457, 1112234579, 111223457912, 11122345791216, 1112234579121621, 111223457912162128, 11122345791216212837, 1112234579121621283749, 111223457912162128374965
OFFSET
1,2
LINKS
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 *)
CROSSREFS
Cf. A000931, A007908, A019523, A102397. See A132347 for another version.
Sequence in context: A078191 A097115 A346789 * A166747 A337844 A015456
KEYWORD
base,easy,nonn
AUTHOR
Omar E. Pol, Nov 10 2007
STATUS
approved