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!)
A257854 a(n) = 2*n^4 - floor(2^(1/4)*n)^4. 2
0, 1, 16, 81, 256, 625, 191, 706, 1631, 3122, 5359, 721, 3056, 6497, 11296, 17729, 751, 7042, 15471, 26386, 40159, 57186, 11536, 28241, 48896, 73969, 103952, 14306, 43391, 78226, 119375, 167426, 12016, 58401, 112672, 175489, 247536, 226, 69647, 149426, 240319 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Is there a simple expression for a nontrivial lower bound for a(n)?
LINKS
EXAMPLE
a(5) = 2*5^4 - floor(2^(1/4)*5)^4 = 2*625 - 5^4 = 625.
a(6) = 2*6^4 - floor(2^(1/4)*6)^4 = 2*1296 - 7^4 = 191.
MATHEMATICA
Table[2 n^4 - Floor[2^(1/4) n]^4, {n, 0, 60}] (* Vincenzo Librandi, May 29 2015 *)
PROG
(PARI) f(n, e=4, b=2)=n^e*b-floor(sqrtn(b, e)*n)^e
(Magma) [2*n^4 - Floor(2^(1/4)*n)^4: n in [0..50]]; // Vincenzo Librandi, May 29 2015
CROSSREFS
Cf. A087056 (analog for squares), A257853 & A257855 (3rd & 5th power).
Sequence in context: A217261 A277562 A217709 * A017672 A055013 A080150
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, May 28 2015
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 25 06:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)