The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A117600 Padovan numbers for which the multiplicative digital root is also a Padovan number. 1
0, 1, 2, 3, 4, 5, 7, 9, 12, 21, 37, 65, 114, 151, 200, 265, 351, 465, 1081, 1897, 2513, 3329, 4410, 5842, 10252, 13581, 17991, 31572, 41824, 55405, 73396, 128801, 170625, 226030, 299426, 396655, 525456, 696081, 1221537, 2143648, 2839729, 3761840, 4983377 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MAPLE
Padovan := proc(n) option remember: if(n=0)then return 1:elif(n<=2)then return 0:fi: return procname(n-3) + procname(n-2): end: MultDig := proc(n) return mul(d, d=convert(n, base, 10)): end: MultRoot := proc(n) local m: m:=n: while(length(m)>1)do m:=MultDig(m): od: return m: end: A117600ind := proc(n) option remember: local k: if(n=1)then return 4:fi: for k from procname(n-1)+1 do if(not Padovan(k)=Padovan(procname(n-1)) and MultRoot(Padovan(k)) in {0, 1, 2, 3, 4, 5, 7, 9})then return k: fi: od: end: seq(Padovan(A117600ind(n)), n=1..60); # Nathaniel Johnston, May 05 2011
CROSSREFS
Sequence in context: A240840 A117599 A117602 * A117601 A117604 A117603
KEYWORD
nonn,easy,base
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 05 2006
EXTENSIONS
Offset changed from 0 to 1 by Nathaniel Johnston, May 05 2011
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 May 29 07:06 EDT 2024. Contains 372926 sequences. (Running on oeis4.)