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!)
A117996 Padovan numbers with only odd digits. 0

%I #7 Jul 31 2015 20:54:36

%S 1,3,5,7,9,37,151,351,7739,17991

%N Padovan numbers with only odd digits.

%C Checked to a(10^5) which is a 12212 digit number and found no other terms. The even digited Padovan numbers are even fewer: 0, 2, 4, 28, 86 & 200. Probably both sequences are finite. - _Robert G. Wilson v_, May 04 2006.

%t a[0] = 1; a[1] = a[2] = 0; a[n_] := a[n] = a[n - 2] + a[n - 3]; lst = {}; Do[ If[ Union@ Join[{1, 3, 5, 7, 9}, IntegerDigits@a[n]] == {1, 3, 5, 7, 9}, Print@a[n]; AppendTo[lst, a[n]]], {n, 10^6}]; Union@lst (* _Robert G. Wilson v_, May 04 2006 *)

%Y Cf. A000931.

%K base,nonn

%O 1,2

%A Luc Stevens (lms022(AT)yahoo.com), May 03 2006

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 30 08:26 EDT 2024. Contains 372962 sequences. (Running on oeis4.)