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!)
A001367 Solution to f(2) = 1, f(n) = sqrt(n) f(sqrt(n)) + n at values n = 2^2^i. 1

%I #12 Jun 27 2012 17:58:01

%S 1,6,40,896,294912,23622320128,119903836479112085504,

%T 2552117751907038475975309555738261585920,

%U 984232758517187661100353372573847216752794869657944794335389464067261601939456

%N Solution to f(2) = 1, f(n) = sqrt(n) f(sqrt(n)) + n at values n = 2^2^i.

%H Alois P. Heinz, <a href="/A001367/b001367.txt">Table of n, a(n) for n = 0..11</a>

%p f:= proc(n) f(n):= `if`(n=2, 1, sqrt(n) *f(sqrt(n)) +n) end:

%p a:= n-> f(2^(2^n)):

%p seq (a(n), n=0..10); # _Alois P. Heinz_, Jun 27 2012

%t f[ 2 ] := 1; f[ n_ ] := Sqrt[ n ]*f[ Sqrt[ n ] ] + n; Table[ f[ 2^2^i ], {i, 0, 7} ]

%K nonn

%O 0,2

%A Alexander Sorg (sorg(AT)bu.edu)

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 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)