A002277
a(n) = 3*(10^n - 1)/9.
Original entry on oeis.org
0, 3, 33, 333, 3333, 33333, 333333, 3333333, 33333333, 333333333, 3333333333, 33333333333, 333333333333, 3333333333333, 33333333333333, 333333333333333, 3333333333333333, 33333333333333333, 333333333333333333, 3333333333333333333, 33333333333333333333, 333333333333333333333
Offset: 0
From _Wolfdieter Lang_, Feb 08 2017: (Start)
Curious cubic identities (see a comment above):
1^3 + 5^3 + 3^3 = 153, 16^3 + 50^3 + 33^3 = 165033, 166^3 + 500^3 + 333^3 = 166500333, ...
3^3 + 7^3 + 0^3 = 370; 336700 = 33^3 + 67^3 + (00)^3 = 336700, 333^3 + 667^3 + (000)^3 = 333667000, ...
3^3 + 7^3 + 1^3 = 371, 33^3 + 67^3 + (01)^3 = 336701, 333^3 + 667^3 + (001)^3 = 333667001, ... (End)
Cf.
A005188,
A067275,
A075412,
A093143,
A135702,
A178631,
A178633,
A246057,
A281857,
A281858,
A281860.
-
[(10^n - 1)/3 : n in [0..30]]; // Wesley Ivan Hurt, Apr 01 2016
-
A002277:=n->(10^n-1)/3: seq(A002277(n), n=0..30); # Wesley Ivan Hurt, Apr 01 2016
-
LinearRecurrence[{11, -10}, {0, 3}, 20] (* Robert G. Wilson v, Jul 06 2013 *)
(10^Range[0, 30] - 1)/3 (* Wesley Ivan Hurt, Apr 01 2016 *)
-
A002277(n):=(10^n - 1)/3$
makelist(A002277(n),n,0,20); /* Martin Ettl, Nov 12 2012 */
-
a(n)=(10^n-1)/3 \\ Charles R Greathouse IV, Sep 24 2015
A093137
Expansion of (1-7*x)/((1-x)*(1-10*x)).
Original entry on oeis.org
1, 4, 34, 334, 3334, 33334, 333334, 3333334, 33333334, 333333334, 3333333334, 33333333334, 333333333334, 3333333333334, 33333333333334, 333333333333334, 3333333333333334, 33333333333333334, 333333333333333334, 3333333333333333334, 33333333333333333334
Offset: 0
a(1)^2 = 16
a(2)^2 = 1156
a(3)^2 = 111556
a(4)^2 = 11115556
a(5)^2 = 1111155556
a(6)^2 = 111111555556
a(7)^2 = 11111115555556
a(8)^2 = 1111111155555556
a(9)^2 = 111111111555555556, etc... (see A102807). - _Philippe Deléham_, Oct 03 2011
Curious cubic identities: 407 = 4^3 + 0^3 + 7^3, 340067 = 34^3 + (00)^3 + 67^3, 334000677 = 334^3 + (000)^3 + 677^3, ... - _Wolfdieter Lang_, Feb 08 2017
- David Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, Revised edition 1987. See entry 3334 at p. 168.
-
nn=20; r=Solve[{s==4x s+3 x a+3x b+1,a==4x a+3x s+3x b,b==4x b+3x s+3x a},{s,a,b}]; CoefficientList[Series[s/.r,{x,0,nn}],x] (* Geoffrey Critzer, Jan 18 2014 *)
Table[3*10^n/9 + 6/9, {n, 0, 20}] (* or *) NestList[10 # - 6 &, 1, 20] (* Michael De Vlieger, Feb 08 2017 *)
LinearRecurrence[{11,-10},{1,4},20] (* Harvey P. Dale, Oct 07 2017 *)
-
Vec((1-7*x)/((1-x)*(1-10*x)) + O (x^30)) \\ Michel Marcus, Feb 09 2017
A281858
Curious cubic identities based on the Armstrong number 370.
Original entry on oeis.org
370, 336700, 333667000, 333366670000, 333336666700000, 333333666667000000, 333333366666670000000, 333333336666666700000000, 333333333666666667000000000, 333333333366666666670000000000, 333333333336666666666700000000000, 333333333333666666666667000000000000
Offset: 1
n=1: 370 = 3^3 + 7^3 + 0^3; n=2: 336700 = 33^3 + 67^3 + (00)^3; n=3: 333667000 = 333^3 + 667^3 + (000)^3.
-
Table[FromDigits@ Join[ConstantArray[3, n], ReplacePart[ConstantArray[6, n], -1 -> 7], ConstantArray[0, n]], {n, 12}] (* Michael De Vlieger, Feb 08 2017 *)
-
Vec(10*x*(37 - 7400*x + 100000*x^2) / ((1 - 10*x)*(1 - 100*x)*(1 - 1000*x)) + O(x^30)) \\ Colin Barker, Feb 08 2017
A281860
Curious identities based on the Armstrong number 371 = A005188(12).
Original entry on oeis.org
371, 336701, 333667001, 333366670001, 333336666700001, 333333666667000001, 333333366666670000001, 333333336666666700000001, 333333333666666667000000001, 333333333366666666670000000001, 333333333336666666666700000000001, 333333333333666666666667000000000001
Offset: 1
n=1: 371 = 3^3 + 7^3 + 1^3;
n=2: 336701 = 33^3 + 67^3 + (01)^3;
n=3: 333667001 = 333^3 + 667^3 + (001)^3.
-
LinearRecurrence[{1111,-112110,1111000,-1000000},{371,336701,333667001,333366670001},20] (* Harvey P. Dale, May 28 2024 *)
-
Vec(x*(371 - 75480*x + 1185000*x^2 - 2000000*x^3) / ((1 - x)*(1 - 10*x)*(1 - 100*x)*(1 - 1000*x)) + O(x^30)) \\ Colin Barker, Feb 09 2017
Showing 1-4 of 4 results.
Comments