login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A053834 Sum of digits of n written in base 14. 2
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

COMMENTS

a(n) = A138530(n,14) for n > 13. - Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Mar 26 2008

LINKS

Eric Weisstein's World of Mathematics, Digit Sum

FORMULA

a(0)=0, a(14n+i)=a(n)+i 0<=i<=13; a(n)=n-13*(sum(k>0, floor(n/14^k)). - Benoit Cloitre, Dec 19, 2002

EXAMPLE

a(20)=1+6=7 because 20 is written as 16 base 14

MATHEMATICA

Array[Total[IntegerDigits[#, 14]]&, 90, 0] (* From Harvey P. Dale, Jul 16 2011 *)

PROG

(PARI) a(n)=if(n<1, 0, if(n%14, a(n-1)+1, a(n/14)))

CROSSREFS

Cf. A000120, A007953.

Sequence in context: A043272 A071523 A070696 * A043273 A080331 A167463

Adjacent sequences:  A053831 A053832 A053833 * A053835 A053836 A053837

KEYWORD

base,nonn

AUTHOR

Henry Bottomley (se16(AT)btinternet.com), Mar 28 2000

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 09:48 EST 2012. Contains 205614 sequences.