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.

A051489 a(n) = n^(n+2) + (n+2)^n.

Original entry on oeis.org

1, 4, 32, 368, 5392, 94932, 1941760, 45136576, 1173741824, 33739007300, 1061917364224, 36314872537968, 1340612376924160, 53132088082450132, 2250010931847299072, 101388548387203175168, 4843806013966239465472
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [n^(n+2) + (n+2)^n: n in [0..30]]; // G. C. Greubel, Jul 14 2021
    
  • Mathematica
    Table[n^(n+2)+(n+2)^n,{n,0,20}] (* Harvey P. Dale, Jul 28 2025 *)
  • Sage
    [n^(n+2) + (n+2)^n for n in (0..30)] # G. C. Greubel, Jul 14 2021