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.

A274090 a(n) = nearest integer to n^2 * cos(sqrt(n)).

Original entry on oeis.org

0, 1, 1, -1, -7, -15, -28, -43, -61, -80, -100, -119, -137, -151, -162, -167, -167, -161, -147, -125, -95, -57, -11, 44, 107, 177, 255, 339, 429, 524, 623, 725, 830, 935, 1040, 1143, 1244, 1342, 1434, 1520, 1599, 1669, 1730, 1780, 1819, 1845, 1858, 1857, 1841, 1810, 1763, 1700, 1621, 1525
Offset: 0

Views

Author

N. J. A. Sloane, Jun 10 2016

Keywords

Crossrefs

Programs

  • Maple
    Digits:=50: f:=n->round(evalf(n^2*cos(sqrt(n)))); [seq(f(n),n=0..120)];
  • Python
    from sympy import cos, sqrt
    def A274090(n):
        return int((n**2*cos(sqrt(n))).round()) # Chai Wah Wu, Jun 11 2016