A217592 Integers that are cut in half by cycling all the decimal digits one place to the left.
0, 105263157894736842, 210526315789473684, 315789473684210526, 421052631578947368, 526315789473684210, 631578947368421052, 736842105263157894, 842105263157894736, 947368421052631578, 105263157894736842105263157894736842, 210526315789473684210526315789473684
Offset: 0
Examples
a(0) = 0 because rotating a lone zero gives 0 = 0/2. a(1) = 105263157894736842 because its half equals 052631578947368421 (discarding leading 0). a(3) = 315789473684210526 since a(3)/2 = 157894736842105263.
Links
- G. P. Michon, Numbers cut in half by rotating digits left (2006).
Crossrefs
A146088(8k+i)=a(9k+i+1)/2 for i=1..8 and any k.
Formula
a(j)=j*105263157894736842 for j = 0 to 9
a(n+9)=10^18*a(n) + a(n) mod 10^18 for n>0
a(9k-9+j) = j*a(1)*(10^18k-1)/(10^18-1) for j=1..9 and k>0
e.g., a(1000) = a(9*112-9+1) = a(1)*(10^2016-1)/(10^18-1)
Comments