A291321 Numbers m with the property that shifting the rightmost digit of m to the left end multiplies the number by 8.
1012658227848, 1139240506329, 10126582278481012658227848, 11392405063291139240506329, 101265822784810126582278481012658227848, 113924050632911392405063291139240506329, 1012658227848101265822784810126582278481012658227848
Offset: 1
Examples
a(1) = b*10 + 8 with b = 101265822784, and 8*a(1) = 8101265822784 = 8*10^12 + b.
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..152
- Wikipedia, Parasitic number.
Crossrefs
Programs
-
PARI
a(n)=10^((n+1)\2*13)\79*(9-n%2) \\ Charles R Greathouse IV, Aug 23 2017
Formula
a(2*k - 1) = 8*(10^(13*k) - 1)/79.
a(2*k) = 9*(10^(13*k) - 1)/79.
Extensions
Edited by M. F. Hasler, May 03 2025
Comments