A074867 a(n) = M(a(n-1)) + M(a(n-2)) where a(1)=a(2)=1 and M(k) is the product of the digits of k in base 10.
1, 1, 2, 3, 5, 8, 13, 11, 4, 5, 9, 14, 13, 7, 10, 7, 7, 14, 11, 5, 6, 11, 7, 8, 15, 13, 8, 11, 9, 10, 9, 9, 18, 17, 15, 12, 7, 9, 16, 15, 11, 6, 7, 13, 10, 3, 3, 6, 9, 15, 14, 9, 13, 12, 5, 7, 12, 9, 11, 10, 1, 1, 2, 3, 5, 8, 13, 11, 4, 5, 9, 14, 13, 7, 10, 7, 7, 14, 11, 5, 6, 11, 7, 8, 15, 13
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
nxt[{a_,b_}]:={b,Times@@IntegerDigits[a]+Times@@IntegerDigits[b]}; Transpose[ NestList[nxt,{1,1},90]][[1]] (* Harvey P. Dale, Feb 01 2015 *)
Formula
From Hieronymus Fischer, Jul 01 2007: (Start)
a(n) = a(n-1)+a(n-2)-10*(floor(a(n-1)/10)+floor(a(n-2)/10)). This is valid, since a(n)<100.
a(n) = ds_10(a(n-1))+ds_10(a(n-2))-(floor(a(n-1)/10)+floor(a(n-2)/10)) where ds_10(x) is the digital sum of x in base 10.
a(n) = Fib(n)-10*sum{1A000045(n).
Extensions
More terms from Christopher N. Swanson (cswanson(AT)ashland.edu), Jul 22 2003
Definition adapted to offset by Georg Fischer, Jun 18 2021
Comments