A067633
a(1) = 1; sequence of digits of a(n)^2 is a subsequence of the sequence of digits of a(n+1)^2.
Original entry on oeis.org
1, 4, 13, 37, 117, 367, 3667, 36667, 366667, 3666667, 36666667, 366666667, 3666666667, 36666666667, 366666666667, 3666666666667, 36666666666667, 366666666666667, 3666666666666667, 36666666666666667, 366666666666666667, 3666666666666666667, 36666666666666666667
Offset: 1
A068176
a(1) = 2; for n>1, a(n) is the smallest square > a(n-1) obtained by inserting digits into a(n-1).
Original entry on oeis.org
2, 25, 225, 1225, 13225, 133225, 10336225, 1033622500, 103362250000, 10336225000000, 1033622500000000, 103362250000000000, 10336225000000000000, 1033622500000000000000, 103362250000000000000000
Offset: 1
a(2) = 25. hence a(3) = 225 the smallest square formed from 25.
A068177
a(1) = 3; for n>1, a(n) is the smallest square > a(n-1) obtained by inserting digits into a(n-1).
Original entry on oeis.org
3, 36, 361, 32761, 323761, 32137561, 3211375561, 321113755561, 32111137555561, 3211111375555561, 321111113755555561, 32111111137555555561, 3211111111375555555561, 321111111113755555555561
Offset: 1
a(2)=36, hence a(3) = 361 the smallest square formed from 36.
A068178
a(1) = 4; for n>1, a(n) is the smallest square > a(n-1) obtained by inserting digits into a(n-1).
Original entry on oeis.org
4, 49, 1849, 18496, 1784896, 177848896, 17778488896, 1777784888896, 177777848888896, 17777778488888896, 1777777784888888896, 177777777848888888896, 17777777778488888888896
Offset: 1
a(2)=49 hence a(3) = 1849 the smallest square formed from 49.
A068616
Starting from a(1)=7, each subsequent term is the minimal square obtained by inserting at least one digit into the previous term.
Original entry on oeis.org
7, 576, 5476, 54756, 1547536, 154753600, 15475360000, 1547536000000, 154753600000000, 15475360000000000, 1547536000000000000, 154753600000000000000, 15475360000000000000000
Offset: 1
a(2)=576 hence a(3) = 5476 the smallest square formed from 576.
-
Digits := 30 : isContain := proc(n,k) local ndigs,kdigs,f,d ; ndigs := convert(n,base,10) ; kdigs := convert(k,base,10) ; f := 1 : for d from 1 to nops(ndigs) do if f > nops(kdigs) then RETURN(false) ; fi ; while op(f,kdigs) <> op(d,ndigs) do f := f+1 ; if f > nops(kdigs) then RETURN(false) ; fi ; od: f := f+1 ; od: RETURN(true) ; end: n := 7 ; s := 8 : while true do while not isContain(n,s^2) do s := s+1 : od ; print(s^2) ; n := s^2: s := ceil(sqrt(s^2+1)) : od: # R. J. Mathar, Jun 26 2007
-
Join[{7,576,5476,54756},NestList[100#&,1547536,10]] (* Harvey P. Dale, Jul 22 2024 *)
Original entry on oeis.org
1, 4, 13, 37, 117, 367, 3667, 36667, 366667, 3666667, 36666667, 366666667, 3666666667, 36666666667, 366666666667, 3666666666667, 36666666666667, 366666666666667, 3666666666666667, 36666666666666667, 366666666666666667
Offset: 1
A068617
Starting from a(1)=8, each subsequent term is the minimal square obtained by inserting at least one digit in the previous term.
Original entry on oeis.org
8, 81, 841, 38416, 3841600, 384160000, 38416000000, 3841600000000, 384160000000000, 38416000000000000, 3841600000000000000, 384160000000000000000, 38416000000000000000000
Offset: 1
a(2)=81 hence a(3) = 841 the smallest square formed from 81.
Showing 1-7 of 7 results.
Comments