A349548 First column of A348575.
1, 10, 19, 28, 52, 8, 5, 17, 35, 44, 68, 24, 3, 12, 21, 51, 70, 58, 77, 107, 81, 75, 93, 144, 100, 118, 127, 151, 116, 167
Offset: 1
Examples
When A348575 is written as an irregular triangle, the first three rows start as: 1, 2, 4, ... 10, 11, 13, ... 19, 20, 22, ... The first numbers of the rows are [1, 10, 19] respectively, the same as the first three terms of this sequence.
Programs
-
Mathematica
seq[len_] := Module[{s = sq = {1}, i = 1, d}, While[Length[sq] < len, If[MemberQ[s, (d = Plus @@ IntegerDigits[s[[-1]]])], AppendTo[s, s[[-1]] + i], AppendTo[s, d]; AppendTo[sq, d]; i = 0]; i++]; sq]; seq[15] (* Amiram Eldar, Nov 23 2021 *)
Extensions
a(24)-a(30) from Jon E. Schoenfield, Nov 30 2021
Comments