A134732 Concatenation of first n members of the Padovan sequence A000931, starting at (1, 1, 1, 2,).
1, 11, 111, 1112, 11122, 111223, 1112234, 11122345, 111223457, 1112234579, 111223457912, 11122345791216, 1112234579121621, 111223457912162128, 11122345791216212837, 1112234579121621283749, 111223457912162128374965
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..125
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 *)