cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A094969 a(n) = floor(5^n/2^n).

Original entry on oeis.org

1, 2, 6, 15, 39, 97, 244, 610, 1525, 3814, 9536, 23841, 59604, 149011, 372529, 931322, 2328306, 5820766, 14551915, 36379788, 90949470, 227373675, 568434188, 1421085471, 3552713678, 8881784197, 22204460492, 55511151231, 138777878078, 346944695195, 867361737988
Offset: 0

Views

Author

Robert G. Wilson v, May 26 2004

Keywords

Crossrefs

Programs

A211995 a(n) = floor(7^n / 2^n) mod 2^n.

Original entry on oeis.org

0, 1, 0, 2, 6, 13, 46, 33, 246, 479, 398, 883, 20, 6215, 9467, 16751, 42245, 115091, 140675, 492363, 674695, 1312859, 2497856, 2451041, 4384342, 6956591, 24348068, 118772672, 147268896, 112787953, 394757837, 844781520, 809251672, 2832380853, 1323398395, 13221828975
Offset: 0

Views

Author

M. F. Hasler, Oct 25 2012

Keywords

Comments

Conjectured to be always positive for n > 2.

References

  • Lew Baxter, Exponential Diophantine Equations, post to NmbrThry list, Oct 25 2012

Crossrefs

Programs

  • Mathematica
    Table[Mod[Floor[7^n/2^n], 2^n], {n, 0, 29}] (* Alonso del Arte, Oct 25 2012 *)
  • Maxima
    A211995(n):=mod(floor( 7^n / 2^n ), 2^n); makelist(A211995(n),n,0,30); /* Martin Ettl, Oct 25 2012 */
  • PARI
    a(n)=7^n\2^n%2^n
    
Showing 1-2 of 2 results.