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

A078568
Repunits concatenated with A000422, where A000422 is the concatenation of numbers from n down to 1.
2
11, 1121, 111321, 11114321, 1111154321, 111111654321, 11111117654321, 1111111187654321, 111111111987654321, 111111111110987654321, 111111111111110987654321, 111111111111121110987654321
OFFSET
1,1
COMMENTS
See A078569 for the primes arising in this sequence.
LINKS
MATHEMATICA
a[n_Integer] := Block[{repUn = Array[Array[1 &, #] &, {n}], nTo1 = Range[ Range@n, 1, -1]}, ToExpression/@ StringJoin/@ Map[ToString, Flatten/@ Thread@{repUn, nTo1}, {2}]]; a[100] (* or *)
a[n_Integer] := FromDigits /@ StringJoin /@ Table[ Join[ PadLeft[{}, i, "1"], ToString /@ Range[i, 1, -1]], {i, n}]; a[100] (* Mikk Heidemaa, May 03 2021 *)
Table[FromDigits[Join[PadRight[{}, n, 1], Flatten[IntegerDigits/@Range[n, 1, -1]]]], {n, 20}] (* Harvey P. Dale, Aug 23 2022 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Jason Earls, Nov 29 2002
STATUS
approved