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

A010346 Base-5 Armstrong or narcissistic numbers (written in base 10).

Original entry on oeis.org

1, 2, 3, 4, 13, 18, 28, 118, 289, 353, 419, 4890, 4891, 9113, 1874374, 338749352, 2415951874
Offset: 1

Views

Author

Keywords

Comments

Zero would also satisfy the definition as the other single-digit terms, but here only positive numbers are considered. - M. F. Hasler, Nov 20 2019

Crossrefs

Cf. A010345 (a(n) written in base 5).
In other bases: A010344 (base 4), A010348 (base 6), A010350 (base 7), A010354 (base 8), A010353 (base 9), A005188 (base 10), A161948 (base 11), A161949 (base 12), A161950 (base 13), A161951 (base 14), A161952 (base 15), A161953 (base 16).

Programs

  • PARI
    A010346=select( is_A010346(n)={n==vecsum([d^#n|d<-n=digits(n,5)])}, [0..9999]) \\ This yields only terms < 10^4 (i.e., all but the last 3 terms), for illustration of is_A010346(). In older versions of PARI, use {n==sum(i=1,#n=digits(n,5),n[i]^#n)}. - M. F. Hasler, Nov 20 2019

Extensions

Edited by Joseph Myers, Jun 28 2009

A010343 Base-4 Armstrong or narcissistic positive numbers.

Original entry on oeis.org

1, 2, 3, 130, 131, 203, 223, 313, 332, 1103, 3303
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A010344 (a(n) written in base 10).
In other bases: A010345 (base 5), A010347 (base 6), A010349 (base 7), A010351 (base 8), A010352 (base 9), A005188 (base 10).

Programs

Formula

a(n) = A007090(A010344(n)). - M. F. Hasler, Nov 18 2019

Extensions

Edited by Joseph Myers, Jun 28 2009
"Positive" added to definition. - N. J. A. Sloane, Nov 18 2019

A010347 Base-6 Armstrong or narcissistic numbers, written in base 6.

Original entry on oeis.org

1, 2, 3, 4, 5, 243, 514, 14340, 14341, 14432, 23520, 23521, 44405, 435152, 5435254, 12222215, 555435035, 1053025020422, 1053122514003, 1435403205450, 1435403205451, 1450005114454, 2135254510352, 2145555022413, 2500150125455, 133024510545125
Offset: 1

Views

Author

Keywords

Comments

From M. F. Hasler, Nov 18 2019: (Start)
Whenever a(n) ends in 0 (n = 8, 11, 20, 28), then a(n+1) = a(n) + 1 also satisfies the definition.
Like the other single-digit terms, zero would satisfy the definition (n = Sum_{i=1..k} d[i]^k where d[1..k] are the base 6 digits of n), but here only positive numbers are considered. (End)

Crossrefs

Cf. A010348 (a(n) written in base 10).
In other bases: A010343 (base 4), A010345 (base 5), A010349 (base 7), A010351 (base 8), A010352 (base 9), A005188 (base 10).

Programs

Extensions

Edited by Joseph Myers, Jun 28 2009

A010349 Base-7 Armstrong or narcissistic numbers, written in base 7.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 13, 34, 44, 63, 250, 251, 305, 505, 12205, 12252, 13350, 13351, 15124, 36034, 205145, 1424553, 1433554, 3126542, 4355653, 6515652, 125543055, 161340144, 254603255, 336133614, 542662326, 565264226, 13210652042, 13213641035, 13261421245, 23662020022, 52112660266
Offset: 1

Views

Author

Keywords

Comments

From M. F. Hasler, Nov 20 2019: (Start)
Like the other single-digit terms, zero would satisfy the definition (n = Sum_{i=1..k} d[i]^k where d[1..k] are the base 7 digits of n), but here only positive numbers are considered.
Whenever a(n) ends in zero (n = 11, 17, 22, 38, 57), then a(n+1) = a(n) + 1 is also a solution to the above equation. (End)

Crossrefs

Cf. A010350 (a(n) written in base 10).
In other bases: A010343 (base 4), A010345 (base 5), A010347 (base 6), A010351 (base 8), A010352 (base 9), A005188 (base 10).

Programs

Extensions

Edited by Joseph Myers, Jun 28 2009

A010351 Base-8 Armstrong or narcissistic numbers, written in base 8.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 24, 64, 134, 205, 463, 660, 661, 40663, 42710, 42711, 60007, 62047, 636703, 3352072, 3352272, 3451473, 4217603, 7755336, 16450603, 63717005, 233173324, 3115653067, 4577203604, 61777450236, 147402312024
Offset: 1

Views

Author

Keywords

Comments

Whenever a term ends in 0, then a(n+1) = a(n) + 1 is also a term. Like the other single-digit terms, zero would satisfy the definition (n = Sum_{i=1..k} d[i]^k when d[1..k] are the base-8 digits of n), but here only positive numbers are considered. - M. F. Hasler, Nov 18 2019

Examples

			432 = 660_8 (= 6*8^2 + 6*8^1 + 0*8^0), and 6^3 + 6^3 + 0^3 = 432, therefore 660 is in the sequence. It's easy to see that 432 + 1 then also satisfies the equation, as for any term that is a multiple of 8. - _M. F. Hasler_, Nov 21 2019
		

Crossrefs

Cf. A010354 (a(n) written in base 10).
In other bases: A010343 (base 4), A010345 (base 5), A010347 (base 6), A010349 (base 7), A010352 (base 9), A005188 (base 10).

Programs

Extensions

Edited by Joseph Myers, Jun 28 2009

A010352 Base-9 Armstrong or narcissistic numbers, written in base 9.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 45, 55, 150, 151, 570, 571, 2446, 12036, 12336, 14462, 2225764, 6275850, 6275851, 12742452, 356614800, 356614801, 1033366170, 1033366171, 1455770342, 8463825582, 131057577510, 131057577511
Offset: 1

Views

Author

Keywords

Comments

From M. F. Hasler, Nov 18 2019: (Start)
Like the other single-digit terms, zero would satisfy the definition (n = Sum_{i=1..k} d[i]^k when d[1..k] are the base-9 digits of n), but here only positive numbers are considered.
Terms a(n+1) = a(n) + 1 (n = 11, 13, 20, 23, 25, 29, 33, 48, 51, 57) correspond to solutions a(n) that are multiples of 9, in which case a(n) + 1 is also a solution. (End)

Examples

			126 = 150_9 (= 1*9^2 + 5*9^1 + 0*9^0) = 1^3 + 5^3 + 0^3. It is easy to see that 126 + 1 then also satisfies this relation, as for all other terms that are multiples of 9. - _M. F. Hasler_, Nov 21 2019
		

Crossrefs

Cf. A010353 (a(n) written in base 10).
In other bases: A010343 (base 4), A010345 (base 5), A010347 (base 6), A010349 (base 7), A010351 (base 8), A005188 (base 10).

Programs

Extensions

Edited by Joseph Myers, Jun 28 2009

A329817 a(n) is the maximum number of digits that must be checked to obtain all Armstrong numbers in base n.

Original entry on oeis.org

2, 7, 13, 20, 28, 35, 43, 52, 60, 69, 78, 87, 97, 106, 116, 126, 136, 146, 156, 167, 177, 188, 199, 209, 220, 231, 242, 253, 264, 276, 287, 298, 310, 321, 333, 345, 356, 368, 380, 392, 404, 416, 428, 440, 452, 464, 476, 489, 501, 513, 526, 538, 551, 563, 576, 588
Offset: 2

Views

Author

Michel Marcus, Nov 22 2019

Keywords

Crossrefs

Cf. A010343 (base 4), A010345 (base 5), A010347 (base 6), A010349 (base 7), A010351 (base 8), A010352 (base 9), A005188 (base 10).

Programs

  • C
    See Links section.
  • Mathematica
    a[b_] := Floor[x /. NSolve[(b-1)^x x == b^(x-1) && x>1, x, Reals][[1]]]; a /@ Range[2, 57] (* Giovanni Resta, Nov 22 2019 *)

Extensions

More terms from Giovanni Resta, Nov 22 2019
Showing 1-7 of 7 results.