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.

A175169 Numbers k that divide the sum of digits of 2^k.

Original entry on oeis.org

1, 2, 5, 70
Offset: 1

Views

Author

N. J. A. Sloane, Dec 03 2010

Keywords

Comments

No other terms <= 200000. - Harvey P. Dale, Dec 16 2010
No other terms <= 1320000. - Robert G. Wilson v, Dec 18 2010
There are almost certainly no further terms.

Crossrefs

Sum of digits of k^n mod n: (k=2) A000079, A001370, A175434, A175169; (k=3) A000244, A004166, A175435, A067862; (k=5) A000351, A066001, A175456; (k=6) A000400, A066002, A175457, A067864; (k=7) A000420, A066003, A175512, A067863; (k=8) A062933; (k=13) A001022, A175527, A175528, A175525; (k=21) A175589; (k=167) A175558, A175559, A175560, A175552.

Programs

A175525 Numbers k that divide the sum of digits of 13^k.

Original entry on oeis.org

1, 2, 5, 140, 158, 428, 788, 887, 914, 1814, 1895, 1976, 2579, 2732, 3074, 3299, 3641, 4658, 4874, 5378, 5423, 5504, 6170, 6440, 6944, 8060, 8249, 8915, 9041, 9158, 9725, 9824, 10661, 11291, 13820, 15305, 17051, 17393, 18716, 19589, 20876, 21641, 23756, 24188, 25961, 28409, 30632, 31307, 32387, 33215, 34970, 35240, 36653, 36977, 41558, 43970, 44951, 47444, 51764, 52655, 53375, 53852, 54104, 56831, 57506, 59153, 66479, 68063, 73562, 78485, 79286, 87908, 92093, 102029, 106934, 114854, 116321, 134051, 139397, 184037, 192353, 256469, 281381, 301118, 469004
Offset: 1

Views

Author

T. D. Noe, Dec 03 2010

Keywords

Comments

Almost certainly there are no further terms.
Comments from Donovan Johnson on the computation of this sequence, Dec 05 2010 (Start):
The number of digits of 13^k is approximately 1.114*k, so I defined an array d() that is a little bigger than 1.114 times the maximum k value to be checked. The elements of d() each are the value of a single digit of the decimal expansion of 13^k with d(1) being the least significant digit.
It's easier to see how the program works if I start with k = 2.
For k = 1, d(2) would have been set to 1 and d(1) would have been set to 3.
k = 2:
x = 13*d(1) = 13*3 = 39
y = 39\10 = 3 (integer division)
x-y*10 = 39-30 = 9, d(1) is set to 9
x = 13*d(2)+y = 13*1+3 = 16, y is the carry from previous digit
y = 16\10 = 1
x-y*10 = 16-10 = 6, d(2) is set to 6
x = 13*d(3)+y = 13*0+1 = 1, y is the carry from previous digit
y = 1\10 = 0
x-y*10 = 1-0 = 1, d(3) is set to 1
These steps would of course be inside a loop and that loop would be inside a k loop. A pointer to the most significant digit increases usually by one and sometimes by two for each successive k value checked. The number of steps of the inner loop is the size of the pointer. A scan is done from the first element to the pointer element to get the digit sum.
(End)
No other terms < 3*10^6. - Donovan Johnson, Dec 07 2010

Crossrefs

Sum of digits of k^n mod n: (k=2) A000079, A001370, A175434, A175169; (k=3) A000244, A004166, A175435, A067862; (k=5) A000351, A066001, A175456; (k=6) A000400, A066002, A175457, A067864; (k=7) A000420, A066003, A175512, A067863; (k=8) A062933; (k=13) A001022, A175527, A175528, A175525; (k=21) A175589; (k=167) A175558, A175559, A175560, A175552.

Programs

  • Mathematica
    Select[Range[1000], Mod[Total[IntegerDigits[13^#]], #] == 0 &]

Extensions

a(47)-a(79) from N. J. A. Sloane, Dec 04 2010
a(80)-a(85) from Donovan Johnson, Dec 05 2010

A175434 (Digit sum of 2^n) mod n.

Original entry on oeis.org

0, 0, 2, 3, 0, 4, 4, 5, 8, 7, 3, 7, 7, 8, 11, 9, 14, 1, 10, 11, 5, 3, 18, 13, 4, 14, 8, 15, 12, 7, 16, 26, 29, 27, 24, 28, 19, 29, 32, 21, 9, 4, 13, 14, 17, 24, 21, 25, 16, 26, 29, 27, 24, 28, 37, 29, 23, 12, 18, 22, 13, 23, 26, 24, 21, 43, 43, 35, 20, 0, 15, 37, 37, 56, 50, 30, 27, 22, 31, 32, 26, 42, 39, 34, 43, 26, 20, 27, 24, 28, 55, 47, 32, 57, 45, 31, 40, 14, 8, 15
Offset: 1

Views

Author

N. J. A. Sloane, Dec 03 2010

Keywords

Examples

			For n = 1,2,3,4,5,6, the digit-sum of 2^n is 2,4,8,7,5,10, so
a(1) through a(6) are 0,0,2,3,0,4. - _N. J. A. Sloane_, Aug 12 2014
		

Crossrefs

Sum of digits of k^n mod n: (k=2) A000079, A001370, A175434, A175169; (k=3) A000244, A004166, A175435, A067862; (k=5) A000351, A066001, A175456; (k=6) A000400, A066002, A175457, A067864; (k=7) A000420, A066003, A175512, A067863; (k=8) A062933; (k=13) A001022, A175527, A175528, A175525; (k=21) A175589; (k=167) A175558, A175559, A175560, A175552.

Programs

  • Mathematica
    Table[Mod[Total[IntegerDigits[2^n]],n],{n,100}] (* Harvey P. Dale, Aug 12 2014 *)

Extensions

Offset changed to 1 at the suggestion of Harvey P. Dale, Aug 12 2014

A175558 a(n) = 167^n.

Original entry on oeis.org

1, 167, 27889, 4657463, 777796321, 129891985607, 21691961596369, 3622557586593623, 604967116961135041, 101029508532509551847, 16871927924929095158449, 2817611963463158891460983, 470541197898347534873984161, 78580380049024038323955354887, 13122923468187014400100544266129, 2191528219187231404816790892443543, 365985212604267644604404079038071681, 61119530504912696648935481199357970727
Offset: 0

Views

Author

N. J. A. Sloane, Dec 03 2010

Keywords

Crossrefs

Programs

  • Mathematica
    167^Range[0,20] (* or *) NestList[167#&,1,20] (* Harvey P. Dale, Feb 23 2015 *)

A175559 Digit sum of 167^n.

Original entry on oeis.org

1, 14, 34, 35, 49, 65, 73, 77, 70, 80, 121, 119, 136, 131, 106, 143, 148, 182, 136, 176, 169, 251, 220, 209, 244, 257, 268, 233, 265, 335, 298, 329, 349, 332, 373, 389, 343, 374, 331, 350, 355, 371, 433, 428, 430, 476, 463, 488, 451, 473, 529, 530, 463, 569, 514, 545, 583, 593, 562, 596, 586, 635, 601, 647, 598, 695, 649, 662, 718, 647, 742, 713, 685, 725, 709, 755, 742, 884, 775, 851, 790
Offset: 0

Views

Author

N. J. A. Sloane, Dec 03 2010

Keywords

Crossrefs

A175560 (Digit sum of 167^n) mod n.

Original entry on oeis.org

0, 0, 2, 1, 0, 1, 0, 6, 8, 1, 9, 4, 1, 8, 8, 4, 12, 10, 5, 9, 20, 0, 2, 4, 7, 8, 17, 13, 16, 28, 19, 29, 2, 33, 4, 19, 4, 27, 38, 35, 2, 13, 41, 34, 26, 3, 18, 19, 32, 29, 20, 47, 39, 28, 50, 23, 23, 40, 6, 46, 25, 43, 17, 22, 45, 55, 59, 38, 26, 42, 3, 37, 68, 43, 5, 58, 37, 73, 61, 70, 44, 67, 65, 73, 77, 61, 38, 24, 39, 1, 13, 61, 89, 18, 69, 88, 68, 97, 26, 86, 18, 52, 37, 38, 29, 103, 48, 28, 22, 106, 11, 27, 42, 40, 77, 26, 107, 57, 56, 118
Offset: 1

Views

Author

N. J. A. Sloane, Dec 03 2010

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Mod[Total[IntegerDigits[167^n]],n],{n,120}] (* Harvey P. Dale, Jul 14 2011 *)

A220365 a(n) is conjectured to be the largest power k for which k divides the sum of digits of n^k.

Original entry on oeis.org

1, 70, 486, 35, 10, 90, 805, 5218, 243, 1, 35, 1494, 469004, 1045, 288, 116, 7, 195, 29, 70, 16710, 23, 2, 1017, 28, 58, 162, 166, 209, 486, 205, 106, 1206, 2053, 37120
Offset: 1

Views

Author

Robert G. Wilson v, Dec 12 2012

Keywords

Comments

a(36) >= 423378.
Please consult the argument in A067863 for the reason that it is believed that all individual such sequences (all k's which divide b^k) terminate.

Examples

			a(2) = 70 since the sum of digits of 2^70 is divisible by 70 and it is believed that there does not exist any larger exponent which satisfies this criterion.
		

Crossrefs

Numbers n such that n divides the sum of digits of k^n: A175169 (k=2), A067862 (k=3), A067864 (k=6), A067863 (k=7), A062933 (k=8), A062927 (k=9), A175525 (k=13), A175589 (k=21), A220364 (k=36), A175552 (k=167).

Programs

  • Mathematica
    For any individual base, b, fQ[n_] := Mod[Plus @@ IntegerDigits[b^n], n] == 0; k = 1; lst = {}; While[k < 100001, If[ fQ@ k, AppendTo[lst, k]; Print[k]]; k++]; lst

Formula

If a(n) = k, then a(10*n) = k.

Extensions

Definition and example corrected by Giovanni Resta, Dec 14 2012
Showing 1-7 of 7 results.