login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A117996 Padovan numbers with only odd digits. 0
1, 3, 5, 7, 9, 37, 151, 351, 7739, 17991 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

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.

MATHEMATICA

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 (from Robert G. Wilson v (rgwv(at)rgwv.com), May 04 2006)

CROSSREFS

Cf. A000931.

Sequence in context: A141708 A081434 A007632 * A092046 A085951 A132286

Adjacent sequences:  A117993 A117994 A117995 * A117997 A117998 A117999

KEYWORD

base,more,nonn

AUTHOR

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 | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 05:32 EST 2012. Contains 205860 sequences.