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!)
A067079 Right digitorial function Rd(n) = abcd...*bcd...*cd...*d...*..., for n = abcd... in decimal notation. 9
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 11, 24, 39, 56, 75, 96, 119, 144, 171, 0, 21, 44, 69, 96, 125, 156, 189, 224, 261, 0, 31, 64, 99, 136, 175, 216, 259, 304, 351, 0, 41, 84, 129, 176, 225, 276, 329, 384, 441, 0, 51, 104, 159, 216, 275, 336, 399, 464, 531, 0, 61, 124, 189 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Rd(abcd) = abcd*bcd*cd*d, etc.
LINKS
FORMULA
a(n) = Product_{k=1..length(n)} (n-10^k*floor(n/10^k)). - Vladeta Jovovic, Jan 08 2002
a(n) = 0 iff n == 0 (mod 10). - M. F. Hasler, Feb 25 2019
EXAMPLE
Rd(256) = 256*56*6 = 86016.
MATHEMATICA
Table[d = IntegerDigits[n]; rd = 1; While[ Length[d] > 0, rd = rd*FromDigits[d]; d = Drop[d, 1]]; rd, {n, 1, 75} ]
Join[{0}, Table[Times@@FromDigits/@NestList[Rest[#]&, IntegerDigits[n], IntegerLength[ n]-1], {n, 70}]] (* Harvey P. Dale, Nov 29 2014 *)
PROG
(Haskell)
import Data.List (tails)
a067079 = product . map read . init . tails . show :: Integer -> Integer
-- Reinhard Zumkeller, Apr 23 2013
(PARI) A067079(n)=prod(k=1, logint(n+!n, 10)+1, n-n\10^k*10^k) \\ M. F. Hasler, Feb 25 2019
CROSSREFS
Cf. A067080.
Sequence in context: A349422 A056967 A321243 * A080434 A062567 A069554
KEYWORD
base,nonn,nice,look
AUTHOR
Amarnath Murthy, Jan 05 2002
EXTENSIONS
More terms from Robert G. Wilson v, Jan 07 2002
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 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)