A061522 a(0) = 0; a(n) is obtained by incrementing each digit of a(n-1) by 7.
0, 7, 14, 811, 1588, 8121515, 1589812812, 812151615891589, 158981281381215168121516, 812151615891581015898128131589812813, 15898128138121516812158781215161589158108121516158915810
Offset: 0
Examples
In the sequence 1588 follows 811 because 8+7 = 15 and 1+7 = 8. - _Indranil Ghosh_, Feb 09 2017
Links
- Indranil Ghosh, Table of n, a(n) for n = 0..16
Programs
-
Mathematica
NestList[FromDigits[Flatten[IntegerDigits/@(IntegerDigits[#]+7)]]&,0,10] (* Harvey P. Dale, Jun 05 2023 *)
Extensions
More terms from Larry Reeves (larryr(AT)acm.org), May 11 2001
Comments