[go: up one dir, main page]

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”).

A138720
Concatenation of k digits 1, k digits 0 and k digits 1, where k is the n-th positive triangular number.
4
101, 111000111, 111111000000111111, 111111111100000000001111111111, 111111111111111000000000000000111111111111111, 111111111111111111111000000000000000000000111111111111111111111
OFFSET
1,1
MATHEMATICA
Table[c=(n(n+1))/2; FromDigits[Join[PadRight[{}, c, 1], PadRight[{}, c, 0], PadRight[{}, c, 1]]], {n, 10}] (* Harvey P. Dale, Oct 15 2013 *)
CROSSREFS
Cf. A000217, 138711, A138179, A138721, A138722.
Sequence in context: A262645 A138826 A292686 * A262627 A259199 A006064
KEYWORD
base,easy,nonn
AUTHOR
Omar E. Pol, Mar 29 2008
STATUS
approved