|
| |
|
|
A053828
|
|
Sum of digits of n written in base 7.
|
|
5
| |
|
|
0, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 7, 2, 3, 4, 5, 6, 7, 8, 3, 4, 5, 6, 7, 8, 9, 4, 5, 6, 7, 8, 9, 10, 5, 6, 7, 8, 9, 10, 11, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 2, 3, 4, 5, 6, 7, 8, 3, 4, 5, 6, 7, 8, 9, 4, 5, 6, 7, 8, 9, 10, 5, 6, 7, 8, 9, 10, 11, 6, 7, 8, 9, 10, 11, 12, 7, 8, 9, 10, 11
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
COMMENTS
| Also the fixed point of the morphism 0->{0,1,2,3,4,5,6}, 1->{1,2,3,4,5,6,7}, 2->{2,3,4,5,6,7,8}, etc. - Robert G. Wilson v Jul 27 2006.
a(n) = A138530(n,7) for n > 6. - Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Mar 26 2008
|
|
|
LINKS
| Eric Weisstein's World of Mathematics, Digit Sum
|
|
|
FORMULA
| a(0)=0, a(7n+i)=a(n)+i 0<=i<=6; a(n)=n-6*(sum(k>0, floor(n/7^k))=n-6*A054896(n). - Benoit Cloitre, Dec 19, 2002
a(n)=Sum_k>=0 {A031007(n,k)}. - From DELEHAM Philippe, Oct 21 2011.
|
|
|
EXAMPLE
| a(20)=2+6=8 because 20 is written as 26 base 7
Contribution from Omar E. Pol (info(AT)polprimos.com), Feb 21 2010: (Start)
It appears that this can be written as a triangle (See the conjecture in the entry A000120):
0,
1,2,3,4,5,6,
1,2,3,4,5,6,7,2,3,4,5,6,7,8,3,4,5,6,7,8,9,4,5,6,7,8,9,10,5,6,7,8,9,10,11,6,7,8,9,10,11,12,
1,2,3,4,5,6,7,2,3,4,5,6,7,8,3,4,5,6,7,8,9,4,5,6,7,8,9,10,5,6,7,8,9,10,11,6,7,8,9,10,11,12,7,8,9,10,11...
where the rows converge to A173527. (End)
|
|
|
MATHEMATICA
| Table[Plus @@ IntegerDigits[n, 7], {n, 0, 100}] (* or *)
Nest[ Flatten[ #1 /. a_Integer -> Table[a + i, {i, 0, 6}]] &, {0}, 4] (* Robert G. Wilson v Jul 27 2006 *)
|
|
|
PROG
| (PARI) a(n)=if(n<1, 0, if(n%7, a(n-1)+1, a(n/7)))
|
|
|
CROSSREFS
| Cf. A000120, A007953.
Cf. A173527. [From Omar E. Pol (info(AT)polprimos.com), Feb 21 2010]
Sequence in context: A190596 A053842 A010885 * A033927 A104414 A125934
Adjacent sequences: A053825 A053826 A053827 * A053829 A053830 A053831
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Henry Bottomley (se16(AT)btinternet.com), Mar 28 2000
|
| |
|
|