A146569 Numbers m with the property that shifting the rightmost digit of m to the left end multiplies the number by 4.
0, 102564, 128205, 153846, 179487, 205128, 230769, 102564102564, 128205128205, 153846153846, 179487179487, 205128205128, 230769230769, 102564102564102564, 128205128205128205, 153846153846153846, 179487179487179487
Offset: 0
Links
- Wikipedia, Parasitic number.
Crossrefs
Programs
-
PARI
a(n) = local(r=(n-1)%6+1,k=(n-r)/6);floor((r+3)/39*10^(6*(k+1))) \\ Hagen von Eitzen, Jun 26 2009
Formula
If n = 6*k + r with 1 <= r <= 6, then a(n) = (10^(6*k) - 1)/(10^6 - 1)*a(r) as well as a(n) = floor((r + 3)/39*10^(6*(k+1))). - Hagen von Eitzen, Jun 26 2009
Extensions
a(7)-a(12) from Donovan Johnson, Jun 06 2009
More terms from Hagen von Eitzen, Jun 26 2009
a(0) = 0 prefixed for consistency with A146088 by M. F. Hasler, May 03 2025
Comments