Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: demaio
Displaying 1-10 of 10 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A002234 Numbers n such that the Woodall number n*2^n - 1 is prime.
(Formerly M0820 N0311)
+10
8
2, 3, 6, 30, 75, 81, 115, 123, 249, 362, 384, 462, 512, 751, 822, 5312, 7755, 9531, 12379, 15822, 18885, 22971, 23005, 98726, 143018, 151023, 667071, 1195203, 1268979, 1467763, 2013992, 2367906, 3752948 (list; graph; listen)
OFFSET

1,1

COMMENT

No other terms < 6500000 - John Blazek, May 14 2009

REFERENCES

J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 115, p. 40, Ellipses, Paris 2008.

H. Riesel, Lucasian criteria for the primality of N=h.2^n-1, Math. Comp., 23 (1969), 869-875.

N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

LINKS

Ray Ballinger, Woodall Primes: Definition and Status

Ray Ballinger and Wilfrid Keller, Woodall numbers

C. K. Caldwell, Woodall Numbers

J. DeMaio, Generalized Woodall Numbers

R. Ondrejka, The Top Ten: a Catalogue of Primal Configurations

Eric Weisstein's World of Mathematics, Woodall Numbers

Eric Weisstein's World of Mathematics, Integer Sequence Primes

CROSSREFS

Cf. A050918 (for the actual primes), A003261, A005849.

Sequence in context: A018318 A051717 A108326 this_sequence A074005 A145499 A082611

Adjacent sequences: A002231 A002232 A002233 this_sequence A002235 A002236 A002237

KEYWORD

nonn,nice,hard

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Simon Plouffe (simon.plouffe(AT)gmail.com)

EXTENSIONS

a(27) communicated by Mohammed Bouayoun (bouyao(AT)wanadoo.fr), Mar 15 2004

1195203 found by M. Rodenkirch, but the region from 1020000 to 1195203 is incompletely searched; contributed by Eric Weisstein (eric(AT)weisstein.com), Nov 29, 2005

More terms from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 05 2008

1467763, 2013992, 2367906, 3752948 from John Blazek, May 14 2009

A045700 Primes of form p^2+q^3 where p and q are primes. +10
8
17, 31, 347, 6863, 493043, 1092731, 1295033, 21253937, 22665191, 38272757, 54439943, 115501307, 904231067, 1121622323, 2738124203, 3067586681, 3301293173, 3673650011, 4549540397, 4599141251, 6507781367, 7222633241 (list; graph; listen)
OFFSET

1,1

COMMENT

p and q cannot both be odd. Thus p=2 or q=2. If q=2 then we want primes of form p^2+8. But 8=-1 mod 3. Since p is prime, p=3 or == 1 or 2 mod 3. If p=1 or 2 mod 3 then 3|p^2+8, so p=3. Therefore with the exception of the first entry (3^2+8=17) this sequence is really just primes of the form q^3+4.

FORMULA

For example: 6863=19^3+2^2.

MAPLE

for n from 1 to 1000 do if (isprime((ithprime(n))^3+4)) then print((ithprime(n))^3+4, 4); fi; if (isprime((ithprime(n))^2+8)) then print((ithprime(n))^2+8, 8); fi; od;

CROSSREFS

Cf. A045699.

Sequence in context: A163443 A027722 A060342 this_sequence A146800 A146731 A146667

Adjacent sequences: A045697 A045698 A045699 this_sequence A045701 A045702 A045703

KEYWORD

nice,nonn,easy

AUTHOR

Felice Russo (felice.russo(AT)katamail.com)

EXTENSIONS

Extension and comment from Joe DeMaio (jdemaio(AT)kennesaw.edu)

A051779 Primes of form pq+2 where p and q are twin primes. +10
7
17, 37, 22501, 32401, 57601, 72901, 176401, 324901, 1664101, 1742401, 5336101, 6502501, 7452901, 11289601, 11492101, 18147601, 21622501, 34222501, 34574401, 40449601, 45968401, 81000001, 85377601, 92736901, 110880901, 118592101 (list; graph; listen)
OFFSET

1,1

COMMENT

Starting with 3rd term, 22501, all terms are of the form 900n^2+1 with n=5, 6, 8, 9, 14, 19, 43, 44, 77, 85 (A125251) [From Zak Seidov (zakseidov(AT)yahoo.com), Dec 07 2008]

FORMULA

{A037074(k) + 2} INTERSECT {A000040}. {A001359(k) * A006512(k) + 2} INTERSECT {A000040}. {A054735(k)^2 + 2*A054735(k) + 2} INTERSECT {A000040}. - Jonathan Vos Post (jvospost3(AT)gmail.com), May 11 2006

EXAMPLE

The third term 22501 is a member of the sequence because 22501=149*151+2, 22501 is prime and {149,151} is a twin prime pair.

MAPLE

with (numtheory): for n from 1 to 2000 do if (ithprime(n+1)-ithprime(n)=2) then if (tau(ithprime(n)*ithprime(n+1)+2)=2) then print(ithprime(n), ithprime(n+1), ithprime(n)*ithprime(n+1)+2); fi; fi; od;

MATHEMATICA

lst={}; Do[p=Prime[n]; If[Length[Divisors[p-2]]==4&&(Divisors[p-2][[3]]-Divisors[p-2][[2]])==2, AppendTo[lst, p]], {n, 6*10^5}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Aug 08 2008]

CROSSREFS

Cf. A048880, A051779, A000040, A001359, A005384, A006512, A037074, A054735.

A125251 [From Zak Seidov (zakseidov(AT)yahoo.com), Dec 07 2008]

Sequence in context: A093343 A153685 A121710 this_sequence A139579 A125248 A156777

Adjacent sequences: A051776 A051777 A051778 this_sequence A051780 A051781 A051782

KEYWORD

easy,nonn

AUTHOR

Joe DeMaio (jdemaio(AT)kennesaw.edu), Dec 09 1999

EXTENSIONS

Edited by R. J. Mathar, Aug 08 2008

A048880 Primes of form pq+2 where p and q are consecutive primes. +10
6
17, 37, 79, 223, 439, 4759, 22501, 32401, 53359, 57601, 60493, 72901, 77839, 95479, 99223, 159199, 164011, 176401, 194479, 239119, 324901, 378223, 416023, 497011, 680623, 756853, 804511, 1115113, 1664101, 1742401, 2223079 (list; graph; listen)
OFFSET

1,1

LINKS

T. D. Noe, Table of n, a(n) for n=1..1000

EXAMPLE

487*491+2=239119.

MAPLE

with (numtheory): for n from 1 to 1000 do if (tau(ithprime(n)*ithprime(n+1)+2)=2) then print(ithprime(n), ithprime(n+1), ithprime(n)*ithprime(n+1)+2); fi; od;

MATHEMATICA

ct = 0; Do[If[PrimeQ[Prime[k]*Prime[k + 1] + 2], ct++; n[ct] = Prime[k]*Prime[k + 1] + 2], {k, 1, 430}]; Table[n[k], {k, 1, ct}] (Lei Zhou)

CROSSREFS

Cf. A051507.

Sequence in context: A146348 A050952 A093930 this_sequence A075892 A155143 A141886

Adjacent sequences: A048877 A048878 A048879 this_sequence A048881 A048882 A048883

KEYWORD

easy,nonn,nice

AUTHOR

Herman H. Rosenfeld (herm3(AT)pacbell.net)

EXTENSIONS

Corrected and extended by Joe DeMaio (jdemaio(AT)kennesaw.edu).

A051735 Binomial coefficients C(n,k) such that C(n,k)-1 and C(n,k)+1 are twin primes and 2<=k<=floor(n/2). +10
3
6, 462, 1877405874732108, 38650751381832, 10000119226331142599460, 51913710643776705684835560, 42552226353687619569660660, 1656627950725900171898183550 (list; graph; listen)
OFFSET

0,1

COMMENT

Sequence is ordered by size of n not size of C(n,k). Link gives list of all values up to n=1352.

LINKS

More terms

EXAMPLE

C(11,5)=462 is a member of the sequence because 461 and 463 are twin primes.

CROSSREFS

See A051770 for values of n, A051771 for values of k.

Sequence in context: A000410 A028665 A001328 this_sequence A024084 A132590 A112945

Adjacent sequences: A051732 A051733 A051734 this_sequence A051736 A051737 A051738

KEYWORD

nonn

AUTHOR

Joe DeMaio (jdemaio(AT)kennesaw.edu), Dec 06 1999

A051770 Numbers n such that there exists a binomial coefficient C(n,k) where C(n,k)-1 and C(n,k)+1 are twin primes and 2<=k<=floor(n/2). +10
3
4, 11, 54, 69, 77, 89, 91, 155, 173, 199, 202, 202, 208, 218, 245, 272, 286, 293, 293, 323, 324, 347, 368, 370, 373, 379, 413, 489, 512, 514, 533, 549, 552, 558, 637, 650, 674, 731, 749, 759, 771, 773, 782, 783, 787, 811, 849, 850, 883, 896, 902, 927, 937 (list; graph; listen)
OFFSET

1,1

COMMENT

The integer 202 occurs twice because both C(202,34) and C(202,69) yield twin prime pairs.

LINKS

Source

EXAMPLE

The integer 11 is a member of the sequence because C(11,5)=462 and 461 and 463 are twin primes.

CROSSREFS

A051735, A051771.

Sequence in context: A149316 A149317 A027042 this_sequence A032181 A081073 A002831

Adjacent sequences: A051767 A051768 A051769 this_sequence A051771 A051772 A051773

KEYWORD

nonn

AUTHOR

Joe DeMaio (jdemaio(AT)kennesaw.edu), Dec 08 1999

A051771 Values of k such that there exists a binomial coefficient C(n,k) where C(n,k)-1 and C(n,k)+1 are twin primes and 2<=k<=floor(n/2). +10
3
2, 5, 26, 13, 35, 44, 37, 23, 78, 46, 34, 69, 44, 106, 41, 50, 90, 89, 132, 107, 137, 143, 184, 145, 133, 166, 181, 82, 158, 198, 157, 175, 183, 163, 317, 293, 140, 123, 317, 251, 218, 169, 170, 103, 327, 229, 329, 73, 190, 79, 51, 95, 79, 290, 395, 432, 126 (list; graph; listen)
OFFSET

0,1

COMMENT

This sequence is ordered by the size of the corresponding value of n.

LINKS

Source

EXAMPLE

The integer 5 is a member of the sequence because C(11,5)=462 and 461 and 463 are twin primes.

CROSSREFS

A051735, A051770.

Sequence in context: A139007 A015486 A120767 this_sequence A008318 A160048 A019047

Adjacent sequences: A051768 A051769 A051770 this_sequence A051772 A051773 A051774

KEYWORD

nonn

AUTHOR

Joe DeMaio (jdemaio(AT)kennesaw.edu), Dec 08 1999

A007935 Composite numbers such that some permutation of digits is a prime. +10
2
14, 16, 20, 30, 32, 34, 35, 38, 50, 70, 74, 76, 91, 92, 95, 98, 104, 106, 110, 112, 115, 118, 119, 121, 124, 125, 128, 130, 133, 134, 136, 140, 142, 143, 145, 146, 152, 154, 160, 164, 166, 169, 170, 172, 175, 176, 182, 188, 190, 194, 196, 200, 203, 209, 214, 215, 217, 218, 230, 232, 235, 236, 238, 253, 272, 275, 278, 287, 289, 290, 292, 296, 298, 299, 300 (list; graph; listen)
OFFSET

1,1

REFERENCES

F. Smarandache, "Only Problems, not Solutions!", Xiquan Publ., Phoenix-Chicago, 1993.

LINKS

M. L. Perez et al., eds., Smarandache Notions Journal

F. Smarandache, Only Problems, Not Solutions!

CROSSREFS

Sequence in context: A091898 A061365 A102107 this_sequence A076055 A068653 A102616

Adjacent sequences: A007932 A007933 A007934 this_sequence A007936 A007937 A007938

KEYWORD

nonn,base,easy

AUTHOR

R. Muller

EXTENSIONS

More terms from Joe DeMaio (jdemaio(AT)kennesaw.edu)

A051641 Palindromic binomial coefficients C(n,k) for k >= 2. +10
1
3, 6, 55, 66, 171, 252, 595, 666, 969, 1001, 1771, 2002, 3003, 3003, 3003, 5005, 5995, 8008, 8778, 15051, 66066, 617716, 646646, 828828, 1269621, 1680861, 3262623, 3544453, 5073705, 5676765, 6295926, 6378736, 35133153, 61477416, 178727871 (list; graph; listen)
OFFSET

1,1

REFERENCES

Alfred S. Posamentier & Ingmar Lehmann, The (Fabulous) Fibonacci Numbers, Prometheus Books, NY, 2007, page 93.

EXAMPLE

C(10,5)=252. 3003 occurs thrice because C(14,6)=C(15,5)=C(78,2)=3003.

MATHEMATICA

fQ[n_] := Block[{id = IntegerDigits@n}, id == Reverse@id]; lst = {}; Do[ k = 2; While[k < n/2 + 1, b = Binomial[n, k]; If[fQ@b, AppendTo[lst, b]; Print@b]; k++ ], {n, 25000000}]; Take[ Union@ lst, 35] - Robert G. Wilson v

CROSSREFS

Cf. A002113, A006987.

Sequence in context: A132474 A032070 A066569 this_sequence A003098 A045914 A067610

Adjacent sequences: A051638 A051639 A051640 this_sequence A051642 A051643 A051644

KEYWORD

nonn,base,nice,easy

AUTHOR

Joe DeMaio (jdemaio(AT)kennesaw.edu)

EXTENSIONS

More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Aug 20 2000

A100958 Values of n for which the Stirling number of the second kind, S(n,4), is prime. +10
1
16, 40, 1416, 10780 (list; graph; listen)
OFFSET

1,1

COMMENT

Values have been checked up to n=100000.

EXAMPLE

S(16,4)=171798901 and S(40,4)=50369882873307917364901 are both prime numbers.

MATHEMATICA

Do[ If[ PrimeQ[ StirlingS2[n, 4]], Print[n]], {n, 4, 11000, 4}] (from Robert G. Wilson v Jan 14 2005)

CROSSREFS

Sequence in context: A070584 A132161 A086046 this_sequence A044093 A044474 A134593

Adjacent sequences: A100955 A100956 A100957 this_sequence A100959 A100960 A100961

KEYWORD

nonn

AUTHOR

Joe DeMaio, Stephen Touset (jdemaio(AT)kennesaw.edu), Jan 11 2005

page 1

Search completed in 0.009 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | The OEIS Foundation | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified February 9 11:24 EST 2010. Contains 172296 sequences.


AT&T Labs Research