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.

A220653 a(n) = n^11 + 11*n + 11^n.

Original entry on oeis.org

1, 23, 2191, 178511, 4208989, 48989231, 364568683, 1996813991, 8804293561, 33739007399, 125937424711, 570623341343, 3881436747541, 36314872538111, 383799398753059, 4185897925275191, 45967322049616753, 505481300395601591, 5559981581902310911, 61159206938673444719
Offset: 0

Views

Author

Jonathan Vos Post, Dec 17 2012

Keywords

Comments

This is to A220425 as 11 is to 2, to A220509 as 11 is to 3, to A220511 as 11 is to 5, and to A220528 as 11 is to 7.
The subsequence of primes begins: 23, 4185897925275191, see A220787 for the associated n.

Examples

			a(1) = 1^11 + 11*1 + 11^1 = 23.
		

Crossrefs

Programs

  • Mathematica
    Table[n^11 + 11*n + 11^n, {n, 0, 30}] (* T. D. Noe, Dec 17 2012 *)
  • Maxima
    A220653(n):=n^11+11*n+11^n$ makelist(A220653(n),n,0,20); /* Martin Ettl, Dec 17 2012 */

Formula

a(n) = A008455(n) + A008593(n) + A001020(n).
G.f.: (131*x^12 +21186*x^11 +1682460*x^10 +24070936*x^9 +104942001*x^8 +163196604*x^7 +91422264*x^6 +14484216*x^5 -518211*x^4 -131726*x^3 -1860*x^2 -1) / ((x -1)^12*(11*x -1)). - Colin Barker, May 09 2013

Extensions

a(19) from Stefano Spezia, May 03 2025

A209261 a(n) = n^13 + 13*n + 13^n.

Original entry on oeis.org

1, 27, 8387, 1596559, 67137477, 1221074483, 13065520903, 96951759015, 550571544713, 2552470327819, 10137858491979, 36314872538111, 130291290501709, 605750213184675, 4731091158953615, 53132088082450327, 669920208810550545
Offset: 0

Views

Author

Jonathan Vos Post, Jan 14 2013

Keywords

Comments

This is to A220425 as 13 is to 2, to A220509 as 13 is to 3, to A220511 as 13 is to 5, to A220528 as 13 is to 7, and to A220653 as 13 is to 11. The subsequence of primes begins: 8387, 13065520903.

Examples

			a(2) = 2^13 + 13*2 + 13^2 = 8387.
		

Crossrefs

Programs

  • Magma
    [n^13 + 13*n + 13^n: n in [0..30]]; // G. C. Greubel, Jan 05 2018
  • Mathematica
    Table[n^13 + 13*n + 13^n, {n,0,30}] (* G. C. Greubel, Jan 05 2018 *)
  • Maxima
    makelist(n^13 + 13*n + 13^n,n,0,20); /* Martin Ettl, Jan 15 2013 */
    
  • PARI
    for(n=0,30, print1(n^13 + 13*n + 13^n, ", ")) \\ G. C. Greubel, Jan 05 2018
    
Showing 1-2 of 2 results.