cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A233452 Numbers k such that k^6 starts with k itself (in base 10).

This page as a plain text file.
%I A233452 #22 Aug 27 2023 16:24:06
%S A233452 0,1,4,10,16,40,100,631,1000,1585,2512,10000,15849,25119,100000,
%T A233452 1000000,10000000,15848932,100000000,1000000000,6309573445,
%U A233452 10000000000,100000000000,251188643151,1000000000000,3981071705535,6309573444802,10000000000000
%N A233452 Numbers k such that k^6 starts with k itself (in base 10).
%e A233452 4^6 = 4096 begins with 4, so 4 is in the sequence.
%t A233452 kmax=10^6; Select[Range[0,kmax],FromDigits[Drop[IntegerDigits[#^6],-(IntegerLength[#^6]-IntegerLength[#])]]==# &] (* _Stefano Spezia_, Aug 27 2023 *)
%o A233452 (PARI) r=65; print1(1, ", "); e=6; for(n=2, r, p=round((10^(1/(e-1)))^n); f=p^e; b=10^(#Str(f)-#Str(p)); if((f-lift(Mod(f, b)))/b==p, print1(p, ", ")));
%Y A233452 Cf. A052210, A052211, A233451, A233453, A233454, A233455, A233456.
%K A233452 nonn,base,easy
%O A233452 1,3
%A A233452 _Arkadiusz Wesolowski_, Dec 10 2013
%E A233452 0 inserted by _Juhani Heino_, Aug 31 2015