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.

A359499 a(n) = ((2*n+1)^16 - 1)/64.

Original entry on oeis.org

0, 672605, 2384185791, 519264540150, 28953440450810, 717964529118315, 10397134518487185, 102631380558013916, 760331123057294820, 4506897086994080745, 22352635785031020755, 95822037745015603890, 363797880709171295166, 1246350673076132966615, 3910101151255427324805
Offset: 0

Views

Author

Jianing Song, Jan 03 2023

Keywords

Comments

a(n) and A000217(n) have the same parity.

Crossrefs

Cf. {((2*n+1)^2^k - 1)/2^(k+2)}: A000217 (k=1), A219086 (k=2), A359498 (k=3), this sequence (k=4).

Programs

  • Mathematica
    Table[((2*n + 1)^16 - 1)/64, {n, 0, 15}] (* Paolo Xausa, Oct 04 2024 *)
  • PARI
    a(n) = ((2*n+1)^16 - 1)/64
    
  • Python
    def A359499(n): return ((n<<1)+1)**16-1>>6 # Chai Wah Wu, Jan 15 2023

Formula

a(n) = A000217(n) * A219086(n) * A175110(n) * A359844(n) = A219086(n) * A175110(n) * A359844(n) = A359498(n) * A359499(n).

A359844 a(n) = ((2*n+1)^8 + 1)/2.

Original entry on oeis.org

1, 3281, 195313, 2882401, 21523361, 107179441, 407865361, 1281445313, 3487878721, 8491781521, 18911429681, 39155492641, 76293945313, 141214768241, 250123206481, 426445518721, 703204309121, 1125937695313, 1756239726961, 2676004630241, 3992462614561, 5844100138801
Offset: 0

Views

Author

Jianing Song, Jan 15 2023

Keywords

Crossrefs

Cf. {((2*n+1)^k + 1)/2}: A000012 (k=0), A001477 (k=1), A219086 (k=2), A050492 (k=3), A175110 (k=4), A175113 (k=6), this sequence (k=8).

Programs

  • Mathematica
    ((2*Range[0, 25] + 1)^8 + 1)/2 (* Paolo Xausa, Jan 23 2025 *)
  • PARI
    a(n) = ((2*n+1)^8 + 1)/2
    
  • Python
    def A359844(n): return ((n<<1)+1)**8+1>>1 # Chai Wah Wu, Jan 15 2023

Formula

a(n) = A359499(n)/A359498(n) = 16 * A359498(n) + 1.
Showing 1-2 of 2 results.