A077293 Partition the concatenation 1234567...of natural numbers into successive strings nontrivially (a(n) is not equal to n) such that the n-th string is a multiple of n.
12, 34, 567, 8, 910, 111213141516, 17181920, 2122232425262728, 293031, 323334353637383940, 41424344454647, 48, 49505152535455565758596061626364, 6566, 676869707172737475, 767778798081828384, 85, 868788
Offset: 1
Examples
a(2) = 34 = 2*17; a(7) = 17181920 = 7*2454560.
Programs
-
PARI
lista(nn) = {my(k=0, m); for(n=1, nn, m=k++; while(m%n>0 || m==n, m=eval(Str(m, k++))); print1(m, ", ")); } \\ Jinyuan Wang, May 16 2020
Formula
a(n) = A077294(n)*n. - Jinyuan Wang, May 16 2020
Extensions
Corrected and extended by Ray Chandler, Oct 18 2003
Comments