login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A118137 Sum of decimal digits of two successive natural numbers. 1
1, 3, 5, 7, 9, 11, 13, 15, 17, 10, 3, 5, 7, 9, 11, 13, 15, 17, 19, 12, 5, 7, 9, 11, 13, 15, 17, 19, 21, 14, 7, 9, 11, 13, 15, 17, 19, 21, 23, 16, 9, 11, 13, 15, 17, 19, 21, 23, 25, 18, 11, 13, 15, 17, 19, 21, 23, 25, 27, 20, 13, 15, 17, 19, 21, 23, 25, 27, 29, 22, 15, 17, 19, 21, 23 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Jason Jewell, Table of n, a(n) for n = 0..1000 (first 75 terms from Giovanni Teofilatto)
FORMULA
a(n) = A007953(n) + A007953(n+1). - Michel Marcus, Sep 06 2019
MAPLE
read("transforms") ;
A118137 := proc(n)
digsum(n)+digsum(n+1) ;
end proc: # R. J. Mathar, Apr 03 2012
# second Maple program:
a:= n-> add(i, i=convert(parse(cat(n, n+1)), base, 10)):
seq(a(n), n=0..100); # Alois P. Heinz, Sep 08 2019
MATHEMATICA
a[n_] := Total@ Flatten@ IntegerDigits[{n, n+1}]; Array[a, 80, 0] (* Giovanni Resta, Sep 06 2019 *)
PROG
(PARI) a(n) = sumdigits(n) + sumdigits(n+1); \\ Michel Marcus, Sep 06 2019
CROSSREFS
Cf. A007953.
Sequence in context: A187907 A024806 A084834 * A160931 A160924 A063280
KEYWORD
base,easy,nonn
AUTHOR
Giovanni Teofilatto, May 13 2006
EXTENSIONS
Added missing term a(18). - Jason Jewell, Sep 06 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 19 01:57 EDT 2024. Contains 370952 sequences. (Running on oeis4.)