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!)
A257855 a(n) = 2*n^5 - floor(2^(1/5)*n)^5. 2
0, 1, 32, 243, 1024, 3125, 7776, 846, 6487, 18098, 38949, 73270, 126371, 204762, 27072, 98893, 207584, 363615, 579136, 868097, 1246368, 205578, 541639, 991310, 1576341, 2320882, 3251603, 68663, 866304, 1886905, 3164576, 4736427, 6642688, 8926829, 646649, 2643750 (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(6) = 2*6^5 - floor(2^(1/5)*6)^5 = 2*7776 - 6^5 = 7776.
a(7) = 2*7^5 - floor(2^(1/5)*7)^5 = 2*16807 - 8^5 = 846.
MATHEMATICA
Table[2 n^5 - Floor[2^(1/5) n]^5, {n, 0, 60}] (* Vincenzo Librandi, May 29 2015 *)
PROG
(PARI) f(n, e=5, b=2)=n^e*b-floor(sqrtn(b, e)*n)^e
(Magma) [2*n^5 - Floor(2^(1/5)*n)^5: n in [0..50]]; // Vincenzo Librandi, May 29 2015
CROSSREFS
Cf. A087056 (analog for squares), A257853, A257854 (3rd & 4th power).
Sequence in context: A346637 A017674 A184979 * A055014 A000584 A352051
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 19 06:16 EDT 2024. Contains 371782 sequences. (Running on oeis4.)