cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A328974 Trajectory of 1496 under repeated application of the map defined in A053392.

Original entry on oeis.org

1496, 51315, 6446, 10810, 1891, 91710, 10881, 18169, 99715, 181686, 9971414, 18168555, 99714131010, 181685544111, 99714131098522, 18168554419171374, 99714131098510108841011, 1816855441917136111816125112, 99714131098510108849722997737623, 1816855441917136111816121316941118161410101385
Offset: 1

Views

Author

N. J. A. Sloane, Nov 01 2019

Keywords

Comments

1496 is the smallest number whose trajectory under A053392 increases without limit.
More terms than usual are shown in order to display the onset of exponential growth.
Proof that this grows without limit, from Hans Havermann, Nov 01 2019: (Start)
One way to prove that the trajectory of a number under repeated application of the map defined in A053392 increases without limit is to show that there exists a term containing a non-final substring of three adjacent 9's.
If such a substring in term n is followed by a 0, it will grow to a non-final substring of three adjacent 9's followed by a 1 in term n+2: *9990* --> *18189* --> *99917*
If such a substring in term n is followed by a digit d that is neither 0 nor 9, it will grow to a non-final substring of four adjacent 9's in term n+2: *999d* --> *18181(d-1)* --> *9999d*
If such a substring in term n is followed by another 9, then it is a substring of k 9's for k >= 4, which will grow to a substring of (2k-3) 9's in term n+2: *[9]^d* --> *[18]^(d-1)* --> *[9]^(2d-3)*
Putting those together, such a substring in term n will grow to four adjacent 9's by term n+4; to five adjacent 9's by term n+6; to seven adjacent 9's by term n+8; ... to 2^k+3 adjacent 9's (see A062709) by term n+4+2k, regardless of what happens in the rest of the number.
In the present sequence a(41) contains two non-final substrings of three adjacent 9's. QED (End)
[Argument corrected and completed by David J. Seal, Nov 05 2019.]

Crossrefs

Cf. A053392.

Programs

  • Mathematica
    NestList[FromDigits[Flatten[{IntegerDigits[Total[Partition[IntegerDigits[#], 2, 1], {2}]]}]] &, 1496, 20] (* Paolo Xausa, Jan 10 2025 *)