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.

A194553 Centered cube numbers: (n+1)^25 + n^25.

Original entry on oeis.org

1, 33554433, 847322163875, 1126747195452067, 299149123783795749, 28728311253806654501, 1369498907693894602183, 39120000482621126610375, 755676919554809750479817, 10717897987691852588770249, 118347059433883722041830251
Offset: 0

Views

Author

Jonathan Vos Post, Aug 28 2011

Keywords

Comments

Can never be prime as a(n) = (2*n+1) * (n^4 + 2*n^3 + 4*n^2 + 3*n+1) * (n^20 + 10*n^19 + 120*n^18 + 795*n^17 + 3685*n^16 + 12752*n^15 + 33965*n^14 + 71205*n^13 + 119580*n^12 + 162965*n^11 + 181754*n^10 + 166595*n^9 + 125515*n^8 +77415*n^7 + 38745*n^6 + 15503*n^5 + 4845*n^4 + 1140*n^3 + 190*n^2 + 20*n + 1).

Crossrefs

Programs

  • Magma
    [(n+1)^25+n^25: n in [0..10]]; // Vincenzo Librandi, Sep 21 2011
  • Mathematica
    Total/@Partition[Range[0,20]^25,2,1] (* Harvey P. Dale, Dec 03 2015 *)

A194566 Centered cube numbers: (n+1)^100+n^100.

Original entry on oeis.org

1, 1267650600228229401496703205377, 515377520732011332304111729993850674198810727377, 1606938044259505653062694103672199063651968615055494942823377
Offset: 0

Views

Author

Jonathan Vos Post, Aug 29 2011

Keywords

Comments

Can never be prime, and after a(0) must have at least 3 prime factors, as a(n) = (2*n^4 + 4*n^3 + 6*n^2 + 4*n + 1) * p_16(n) * p_80(n).

Crossrefs

Programs

  • Maple
    a:= n-> (n+1)^100 +n^100: seq (a(n), n=0..20);
  • Mathematica
    Total/@Partition[Range[0,5]^100,2,1] (* Harvey P. Dale, Aug 10 2013 *)

Formula

a(n) = (n+1)^100 + n^100.
Showing 1-2 of 2 results.