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-6 of 6 results.

A001594 a(n) = 6^n + n^6.

Original entry on oeis.org

1, 7, 100, 945, 5392, 23401, 93312, 397585, 1941760, 10609137, 61466176, 364568617, 2179768320, 13065520825, 78371693632, 470196375201, 2821126684672, 16926683582305, 101559990680640, 609359787056377
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. sequences of the form k^n+n^k: A001580 (k=2), A001585 (k=3), A001589 (k=4), A001593 (k=5), this sequence (k=6), A001596 (k=7), A198401 (k=8), A185277 (k=9), A177068 (k=10), A177069 (k=11).

Programs

  • Magma
    [6^n+n^6: n in [0..30]]; // Vincenzo Librandi, Oct 27 2011
    
  • Maple
    seq(seq(k^n+n^k, k=6..6), n=0..19); # Zerinvary Lajos, Jun 29 2007
  • Mathematica
    Table[6^n + n^6, {n, 0, 30}] (* or *) CoefficientList[Series[(1 - 6 x + 72 x^2 - 75 x^3 - 1475 x^4 - 1776 x^5 - 334 x^6 - 7 x^7)/((1-x)^7 (1-6 x)), {x, 0, 30}], x] (* Vincenzo Librandi, Aug 28 2014 *)
    LinearRecurrence[{13,-63,161,-245,231,-133,43,-6},{1,7,100,945,5392,23401,93312,397585},20] (* Harvey P. Dale, Jan 07 2023 *)
  • PARI
    a(n)=6^n+n^6 \\ Charles R Greathouse IV, Feb 14 2011
    
  • Sage
    [6^n+n^6 for n in (0..30)] # Bruno Berselli, Aug 28 2014

Formula

G.f.: (1 - 6*x + 72*x^2 - 75*x^3 - 1475*x^4 - 1776*x^5 - 334*x^6 - 7*x^7)/((1-x)^7*(1-6*x)). - Vincenzo Librandi, Aug 28 2014

A055652 Table T(m,k)=m^k+k^m (with 0^0 taken to be 1) as square array read by antidiagonals.

Original entry on oeis.org

2, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 4, 8, 4, 1, 1, 5, 17, 17, 5, 1, 1, 6, 32, 54, 32, 6, 1, 1, 7, 57, 145, 145, 57, 7, 1, 1, 8, 100, 368, 512, 368, 100, 8, 1, 1, 9, 177, 945, 1649, 1649, 945, 177, 9, 1, 1, 10, 320, 2530, 5392, 6250, 5392, 2530, 320, 10, 1, 1, 11, 593, 7073
Offset: 0

Views

Author

Henry Bottomley, Jun 08 2000

Keywords

Crossrefs

Columns and rows are A000012 (apart from first term), A000027, A001580, A001585, A001589, A001593 etc. Diagonals include A013499 (apart from first two terms), A051442, A051489.
Cf. A055651.
Contribution from Franklin T. Adams-Watters, Oct 26 2009: (Start)
Main diagonal is 2 * A000312. More diagonals: A051442, A051489, A155539.
Cf. A076980, A156353, A156354. (End)

Formula

E.g.f. Sum(n,m, T(n,m)/(n! m!)) = e^(x e^y) + e^(y e^x). [From Franklin T. Adams-Watters, Oct 26 2009]

A185277 a(n) = n^9 + 9^n.

Original entry on oeis.org

1, 10, 593, 20412, 268705, 2012174, 10609137, 45136576, 177264449, 774840978, 4486784401, 33739007300, 287589316833, 2552470327702, 22897453501745, 205929575454024, 1853088908328577, 16677300287543066, 150094833656289489
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. sequences of the form k^n+n^k: A001580 (k=2), A001585 (k=3), A001589 (k=4), A001593 (k=5), A001594 (k=6), A001596 (k=7), A198401 (k=8), this sequence (k=9), A177068 (k=10), A177069 (k=11).

Programs

  • Magma
    [9^n+n^9: n in [0..30]]; // Vincenzo Librandi, Oct 27 2011
    
  • Mathematica
    Table[9^n + n^9, {n, 0, 30}] (* or *) CoefficientList[Series[(1 - 9 x + 538 x^2 + 9970 x^3 - 43028 x^4 - 638168 x^5 - 1317266 x^6 - 779618 x^7 - 130925 x^8 - 4527 x^9 - 8 x^10)/((1 - x)^10 (1 - 9 x)), {x, 0, 30}], x] (* Vincenzo Librandi, Aug 28 2014 *)
    LinearRecurrence[{19,-135,525,-1290,2142,-2478,2010,-1125,415,-91,9},{1,10,593,20412,268705,2012174,10609137,45136576,177264449,774840978,4486784401},20] (* Harvey P. Dale, Jun 08 2023 *)
  • PARI
    for(n=0,25, print1(n^9 + 9^n, ", ")) \\ G. C. Greubel, Jun 25 2017
  • Sage
    [9^n+n^9 for n in (0..30)] # Bruno Berselli, Aug 28 2014
    

Formula

G.f.: (1 - 9*x + 538*x^2 + 9970*x^3 - 43028*x^4 - 638168*x^5-1317266*x^6 - 779618*x^7 - 130925*x^8 - 4527*x^9 - 8*x^10)/((1-x)^10*(1-9*x)). - Vincenzo Librandi, Aug 28 2014

A177069 11^n + n^11.

Original entry on oeis.org

1, 12, 2169, 178478, 4208945, 48989176, 364568617, 1996813914, 8804293473, 33739007300, 125937424601, 570623341222, 3881436747409, 36314872537968, 383799398752905, 4185897925275026, 45967322049616577, 505481300395601404
Offset: 0

Views

Author

Vincenzo Librandi, May 31 2010

Keywords

Crossrefs

Cf. sequences of the form k^n+n^k: A001580 (k=2), A001585 (k=3), A001589 (k=4), A001593 (k=5), A001594 (k=6), A001596 (k=7), A198401 (k=8), A185277 (k=9), A177068 (k=10), this sequence (k=11).

Programs

  • Magma
    [11^n+n^11: n in [0..20]]
    
  • Mathematica
    Table[11^n + n^11, {n, 0, 30}] (* or *) CoefficientList[Series[(1 - 11 x + 2091 x^2 + 130021 x^3 + 524976 x^4 -14501046 x^5 - 91394082 x^6 - 163229406 x^7 - 104915271 x^8 - 24085951 x^9 - 1676905 x^10 - 22407 x^11 - 10 x^12)/((1 - x)^12 (1 - 11 x)), {x, 0, 30}], x] (* Vincenzo Librandi, Aug 28 2014 *)
  • PARI
    a(n)= 11^n+n^11 \\ Charles R Greathouse IV, Jan 11 2012
    
  • Sage
    [11^n+n^11 for n in (0..30)] # Bruno Berselli, Aug 28 2014

Formula

G.f.: (1 - 11*x + 2091*x^2 + 130021*x^3 + 524976*x^4 - 14501046*x^5 - 91394082*x^6 - 163229406*x^7 - 104915271*x^8 - 24085951*x^9 - 1676905*x^10 - 22407*x^11 - 10*x^12) / ((1-x)^12*(1-11*x)). - Vincenzo Librandi, Aug 28 2014

A198401 a(n) = 8^n + n^8.

Original entry on oeis.org

1, 9, 320, 7073, 69632, 423393, 1941760, 7861953, 33554432, 177264449, 1173741824, 8804293473, 69149458432, 550571544609, 4399522300160, 35186934979457, 281479271677952, 2251806789442689, 18014409529442560, 144115205059418913
Offset: 0

Views

Author

Vincenzo Librandi, Oct 27 2011

Keywords

Crossrefs

Programs

  • Magma
    [8^n+n^8: n in [0..20]]
    
  • Mathematica
    f[n_] := 8^n + n^8; f[Range[0, 30]]
    LinearRecurrence[{17,-108,372,-798,1134,-1092,708,-297,73,-8},{1,9,320,7073,69632,423393,1941760,7861953,33554432,177264449},30] (* Harvey P. Dale, Aug 26 2023 *)
  • PARI
    a(n)=8^n+n^8 \\ Charles R Greathouse IV, Oct 16 2015

Formula

G.f.: -(9*x^9 +1966*x^8 +34133*x^7 +120575*x^6 +109459*x^5 +18599*x^4 -2233*x^3 -275*x^2 +8*x -1) / ((x -1)^9*(8*x -1)). - Colin Barker, Sep 13 2013

A309422 Numbers k such that 7^k + k^7 is prime.

Original entry on oeis.org

54, 3076, 11796
Offset: 1

Views

Author

Hugo Pfoertner, Jul 30 2019

Keywords

Comments

a(4) > 110000.

Crossrefs

Showing 1-6 of 6 results.