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!)
A329056 a(n) is the integer nearest to the result of raising n to the power of the fraction that is the natural logarithm of n over the natural logarithm of the golden ratio. 0
1, 3, 12, 54, 218, 790, 2614, 7989, 22756, 60950, 154631, 373880, 866019, 1930121, 4154593, 8664718, 17557769, 34651632, 66747915, 125725045, 231949573, 419750808, 746081780, 1304039046, 2243705012, 3803904385, 6360060015, 10495565911, 17107197521 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = round(n^(log(n)/log(phi))).
PROG
(JavaScript)
var listy = [];
for (var i = 1; i < 30; i++) {
var u = Math.round(Math.pow(i, Math.log(i)/Math.log(((Math.sqrt(5)+1)/2))));
appendItem(listy, u);
}
console.log(listy);
(PARI) vector(30, n, round(n^(log(n)/log((sqrt(5) + 1)/2)))) \\ Andrew Howroyd, Nov 02 2019
CROSSREFS
Cf. A001622.
Sequence in context: A120983 A124810 A370821 * A191577 A282901 A123348
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 March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)