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!)
A190650 Product of iterated integral part of square root. 2
1, 2, 3, 8, 10, 12, 14, 16, 27, 30, 33, 36, 39, 42, 45, 128, 136, 144, 152, 160, 168, 176, 184, 192, 250, 260, 270, 280, 290, 300, 310, 320, 330, 340, 350, 432, 444, 456, 468, 480, 492, 504, 516, 528, 540, 552, 564, 576, 686, 700, 714, 728, 742, 756, 770, 784, 798, 812, 826, 840, 854, 868, 882, 1024, 1040, 1056, 1072, 1088, 1104, 1120, 1136, 1152, 1168, 1184, 1200, 1216, 1232, 1248, 1264, 1280 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) = n * f(n) * f(f(n)) * ..., where f(n) = floor(sqrt(n)). Although this is written as an infinite product, all but finitely many terms are 1.
LINKS
FORMULA
a(1) = 1; for n>1, a(n) = n*a(floor(sqrt(n)).
a(n) <= n^2/2 for n > 1. Equality holds for n = 2^2^k.
EXAMPLE
a(1) = 1, a(2) = 2*1, a(3) = 3*1, a(4) = 4*2*1, a(5) = 5*2*1, ....
PROG
(PARI) a(n)=local(r); r=n; while((n=sqrtint(n))>1, r*=n); r
CROSSREFS
Sequence in context: A028751 A325424 A057543 * A000059 A340301 A216761
KEYWORD
nonn
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 April 24 08:28 EDT 2024. Contains 371927 sequences. (Running on oeis4.)