The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A225296 Numbers divisible by their first digit cubed (excluding those whose first digit is 1). 3
24, 200, 208, 216, 224, 232, 240, 248, 256, 264, 272, 280, 288, 296, 324, 351, 378, 448, 500, 648, 2000, 2008, 2016, 2024, 2032, 2040, 2048, 2056, 2064, 2072, 2080, 2088, 2096, 2104, 2112, 2120, 2128, 2136, 2144, 2152, 2160, 2168, 2176, 2184, 2192, 2200, 2208 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers where floor(n/10^floor(log(n)))^3 | n.
LINKS
Christian N. K. Anderson, Table of n, a(n) for n = 1..10000
Christian N. K. Anderson, Ulam Spiral of first 10000 terms.
EXAMPLE
448 is divisible by 4^3.
MATHEMATICA
dfdcQ[n_]:=Module[{fidn=IntegerDigits[n][[1]]}, fidn!=1&&Divisible[ n, fidn^3]]; Select[Range[2500], dfdcQ] (* Harvey P. Dale, Jan 13 2019 *)
PROG
(R) x=0; y=rep(0, 1000); len=0
firstdig<-function(x) as.numeric(substr(as.character(x), 1, 1))
isint<-function(x) x==as.integer(x)
while(len<1000) if((fd=firstdig((x=x+1)))>1) if(isint(x/fd^3)) y[(len=len+1)]=x
CROSSREFS
Sequence in context: A126519 A260358 A198396 * A048355 A132458 A055857
KEYWORD
nonn,base
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 22 21:38 EDT 2024. Contains 372758 sequences. (Running on oeis4.)