|
| |
|
|
A051639
|
|
Concatenation of 3^k, k = 0,..,n.
|
|
1
| |
|
|
1, 13, 139, 13927, 1392781, 1392781243, 1392781243729, 13927812437292187, 139278124372921876561, 13927812437292187656119683, 1392781243729218765611968359049, 1392781243729218765611968359049177147
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,2
|
|
|
REFERENCES
| A. Murthy, Smarandache Notions Journal, Vol. 11 N. 1-2-3 Spring 2000
|
|
|
EXAMPLE
| 139 belongs to the sequence because it is the concatenation of 3^0, 3^1 and 3^2.
|
|
|
MAPLE
| Contribution from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 10 2010: (Start)
cat2 := proc(a, b) dgsb := max(1, ilog10(b)+1) ; a*10^dgsb+b ; end proc:
catL := proc(L) local a; a := op(1, L) ; for i from 2 to nops(L) do a := cat2(a, op(i, L)) ; end do; a; end proc:
A051639 := proc(n) catL([seq(3^k, k=0..n)]) ; end proc: seq(A051639(n), n=0..20) ; (End)
|
|
|
MATHEMATICA
| With[{p3=3^Range[0, 15]}, Table[FromDigits[Flatten[IntegerDigits/@ Take[ p3, n]]], {n, 15}]] (* From Harvey P. Dale, Sep 13 2011 *)
|
|
|
CROSSREFS
| Cf. A000244. [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 10 2010]
Sequence in context: A195464 A064103 A186506 * A138931 A157160 A045742
Adjacent sequences: A051636 A051637 A051638 * A051640 A051641 A051642
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Felice Russo (frusso(AT)micron.com), Nov 15 1999
|
|
|
EXTENSIONS
| Terms n>=7 corrected by R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 10 2010
|
| |
|
|