|
| |
|
|
A078607
|
|
Least positive integer x such that 2*x^n>(x+1)^n.
|
|
2
| |
|
|
3, 4, 6, 7, 9, 10, 12, 13, 14, 16, 17, 19, 20, 22, 23, 25, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 40, 42, 43, 45, 46, 48, 49, 50, 52, 53, 55, 56, 58, 59, 61, 62, 63, 65, 66, 68, 69, 71, 72, 74, 75, 76, 78, 79, 81, 82, 84, 85, 87, 88, 89, 91, 92, 94, 95, 97, 98, 100, 101, 102
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 2,1
|
|
|
FORMULA
| a(n) = ceiling(1/(2^(1/n)-1)). For most n, a(n) is the nearest integer to n/log(2), but there are exceptions, including n=777451915729368.
|
|
|
EXAMPLE
| a(2)=3 as 2^2=4, 3^2=9 and 4^2=16.
|
|
|
PROG
| (PARI) for (n=2, 50, x=2; while (2*x^n<=((x+1)^n), x++); print1(x", "))
|
|
|
CROSSREFS
| Cf. A078608, A078609.
Sequence in context: A184429 A130269 A186495 * A184746 A186227 A185543
Adjacent sequences: A078604 A078605 A078606 * A078608 A078609 A078610
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Jon Perry (perry(AT)globalnet.co.uk), Dec 09 2002
|
|
|
EXTENSIONS
| Edited by Dean Hickerson (dean.hickerson(AT)yahoo.com), Dec 17 2002
|
| |
|
|